Package org.apache.uima.internal.util
Interface IntComparator
public interface IntComparator
Compare two integers.
-
Method Summary
-
Method Details
-
compare
int compare(int i, int j) Compare two ints.- Parameters:
i
- first int.j
- second int.- Returns:
-1
ifi < j
;1
ifi > j
;0
ifi == j
.
-