Comparator- and
Comparable-based functors, algorithms and utilities.See: Description
| Class | Description |
|---|---|
| ComparatorFunction<T> |
Adapts a
Comparator to the
BinaryFunction interface. |
| IsEquivalent<T> |
A
BinaryPredicate that tests
true iff the left argument is equal to the
right argument under the specified Comparator. |
| IsGreaterThan<T> |
A
BinaryPredicate that tests
true iff the left argument is greater than the
right argument under the specified Comparator. |
| IsGreaterThanOrEqual<T> |
A
BinaryPredicate that tests
true iff the left argument is greater than or equal
to the right argument under the specified Comparator. |
| IsLessThan<T> |
A
BinaryPredicate that tests
true iff the left argument is greater than the
right argument under the specified Comparator. |
| IsLessThanOrEqual<T> |
A
BinaryPredicate that tests
true iff the left argument is less than or equal to the
right argument under the specified Comparator. |
| IsNotEquivalent<T> |
A
BinaryPredicate that tests
true iff the left argument is not equal to the
right argument under the specified Comparator. |
| IsWithinRange<A extends Comparable<A>> |
A
UnaryPredicate that tests whether a Comparable object is
within a range. |
| Max<T> |
Adapts a
Comparator to the
BinaryFunction interface. |
| Min<T> |
Adapts a
Comparator to the
BinaryFunction interface. |
Comparator- and
Comparable-based functors, algorithms and utilities.
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.