Package edu.fiu.jtlex.timeml.timeline
Interface ITimeMLIndeterminacy
- All Known Implementing Classes:
TimeMLIndeterminacy
public interface ITimeMLIndeterminacy
Abstraction for indeterminacy results.
-
Method Summary
Modifier and TypeMethodDescriptiondouble
Calculates the indeterminacy score.int
Returns the timeline's length.int
Returns the number of adjacent pairs.int
Returns the total number of indeterminant time sections.Return the adjacent indeterminant time pairings.Returns the indeterminant time points
-
Method Details
-
getIndeterminacyScore
double getIndeterminacyScore()Calculates the indeterminacy score.- Returns:
- A number between 0-1 representing the indeterminacy score
- Since:
- jTLEX 1.0
-
indeterminantTimePairs
Return the adjacent indeterminant time pairings.- Returns:
- A List of the adjacent indeterminant time pairings.
- Since:
- jTLEX 1.0
-
indeterminantTimePoints
Returns the indeterminant time points- Returns:
- A List of the indeterminate time points as Strings.
- Since:
- jTLEX 1.0
-
getTotalIndeterminantSections
int getTotalIndeterminantSections()Returns the total number of indeterminant time sections.- Returns:
- The total number of indeterminate time sections.
- Since:
- jTLEX 1.0
-
getTimelineLength
int getTimelineLength()Returns the timeline's length.- Returns:
- The timeline's length.
- Since:
- jTLEX 1.0
-
getTotalAdjacentPairs
int getTotalAdjacentPairs()Returns the number of adjacent pairs.- Returns:
- The number of adjacent pairs.
- Since:
- jTLEX 1.0
-