Interface CellComparator

    • Method Detail

      • compare

        int compare​(Object o1,
                    Object o2)
        Compares its two arguments for order. Returns a negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.

        Note that nulls are permitted, and should be sorted to the beginning of an ascending sort; i.e. null is considered to be "smaller" than non-null values.

        Parameters:
        o1 - the first object to be compared
        o2 - the second object to be compared
        Returns:
        an integer representing relative ordering
        Throws:
        ClassCastException - if the arguments' types prevent them from being compared by this comparator
        See Also:
        Comparator.compare(Object, Object)