Package edu.fiu.jtlex.data
Interface IIndeterminacy
public interface IIndeterminacy
The Interface for the indeterminacy java class
to implement its methods from.
- Author:
- ceber003
-
Method Summary
Modifier and Type Method Description java.lang.StringgetIndeterminacyScore()Returns a percent value representing the indeterminacy score.intgetTimelineLength()Returns the overall length of the timeline.intgetTotalAdjacentPairs()Returns the number of adjacent pairs which have been located by the method.intgetTotalIndeterminantSections()Returns the total number of indeterminant time points which have been located by the method.java.util.Set<INode>indeterminantTimePairs()Returns the adjacent indeterminant time pairings.java.util.List<INode>indeterminantTimePoints()Returns the time points which are indeterminant.
-
Method Details
-
getIndeterminacyScore
java.lang.String getIndeterminacyScore()Returns a percent value representing the indeterminacy score.- Returns:
- The String version of the Indeterminacy Score.
-
indeterminantTimePairs
java.util.Set<INode> indeterminantTimePairs()Returns the adjacent indeterminant time pairings.- Returns:
- A Set of INodes that are the indeterminate time pairs.
-
indeterminantTimePoints
java.util.List<INode> indeterminantTimePoints()Returns the time points which are indeterminant.- Returns:
- A List of INodes that are the indeterminate time points.
-
getTotalIndeterminantSections
int getTotalIndeterminantSections()Returns the total number of indeterminant time points which have been located by the method.- Returns:
- An integer that contains the total number of indeterminate time sections.
-
getTimelineLength
int getTimelineLength()Returns the overall length of the timeline.- Returns:
- An integer that contains the length of the whole timeline.
-
getTotalAdjacentPairs
int getTotalAdjacentPairs()Returns the number of adjacent pairs which have been located by the method.- Returns:
- An integer that contains the number of adjacent pairs in the graph.
-