Package org.onosproject.ui.table
Interface CellComparator
-
- All Known Implementing Classes:
AbstractCellComparator
,DefaultCellComparator
public interface CellComparator
Defines a comparator for cell values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
compare(Object o1, Object o2)
Compares its two arguments for order.
-
-
-
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 comparedo2
- 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)
-
-