Package org.apache.uima.cas.impl
Interface FSComparator
public interface FSComparator
UNUSED V3 backwards compat only Delete REplace with Comparator<FeatureStructure> or the
like. Interface to compare two feature structures.
-
Method Summary
Modifier and TypeMethodDescriptionint
compare
(FeatureStructure fs1, FeatureStructure fs2) Compare two FSs.
-
Method Details
-
compare
Compare two FSs.- Parameters:
fs1
- First feature structure.fs2
- Second feature structure.- Returns:
-1
, iffs1
is "smaller" thanfs2
;1
, iffs2
is smaller thanfs1
; and0
, iffs1
equalsfs2
.
-