Package org.apache.uima.cas.admin
Interface LinearTypeOrder
-
- All Known Implementing Classes:
LinearTypeOrderBuilderImpl.TotalTypeOrder
public interface LinearTypeOrderLinear order on types.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcompare(FeatureStructure fs1, FeatureStructure fs2)Compare two Feature Structure's typesint[]getOrder()booleanisEmptyTypeOrder()booleanlessThan(int t1, int t2)Compare two types.booleanlessThan(Type t1, Type t2)Compare two types.
-
-
-
Method Detail
-
lessThan
boolean lessThan(Type t1, Type t2)
Compare two types.- Parameters:
t1- type to comparet2- type to compare- Returns:
trueifft1is less thant2in this order.
-
lessThan
boolean lessThan(int t1, int t2)Compare two types.- Parameters:
t1- type to comparet2- type to compare- Returns:
trueifft1is less thant2in this order.
-
compare
int compare(FeatureStructure fs1, FeatureStructure fs2)
Compare two Feature Structure's types- Parameters:
fs1- first Feature Structurefs2- second Feature Structure- Returns:
- same as compare functions: -1 if fs1's type < fs2's type, etc.
-
getOrder
int[] getOrder()
- Returns:
- The type order as array of type codes in ascending order.
-
isEmptyTypeOrder
boolean isEmptyTypeOrder()
- Returns:
- true if there is no type order defined for this pipeline
-
-