Package net.sourceforge.jiu.util
Interface ComparatorInterface
-
- All Known Implementing Classes:
ContouringColorPair,OctreeNode,RGBColorComparator
public interface ComparatorInterfaceTo be able to do sorting in Java 1.1 as defined in java.util.Arrays (which is only available in Java 1.2 and higher), we offer a java.util.Comparator clone under a different name: ComparatorInterface. Sorting will be provided by theSortclass of this package.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcompare(Object o1, Object o2)Compares the two argument objects and returns their relation.
-