Package ca.odell.glazedlists
Interface ThresholdList.Evaluator<E>
-
- Enclosing class:
- ThresholdList<E>
public static interface ThresholdList.Evaluator<E>
Provide an integer value for a givenObject
in aThresholdList
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
evaluate(E object)
Returns an integer value for anObject
to be used to compare that object against a threshold.
-
-
-
Method Detail
-
evaluate
int evaluate(E object)
Returns an integer value for anObject
to be used to compare that object against a threshold. This value is not relative to any other object unlike aComparator
.
-
-