See: Description
| Class | Description |
|---|---|
| AnyComparator<T> |
The AnyComparator can compare elements of any object type,
even if they do not implement Comparable.
|
| ArraysHelper |
The class ArraysHelper adds method for handling boolean arrays
which are missing in java.util.Arrays, e.g. sort() and binarySearch().
|
| BigLists |
Helper class to create wrapper list objects wrapping primitive BigLists.
|
| GapLists |
Helper class to create wrapper list objects wrapping primitive GapLists.
|
| IdentMapper<E> |
Identity mapper.
|
| MergeSort<E> |
This class implements a stable in-place merge sort.
|
| NaturalComparator<T> |
The NaturalComparator will compare object using their natural order.
|
| NullComparator<T> |
A NullComparator extends an existing comparator so it can handle null values.
|
| Option<T> |
The Option class allows to distinguish between a null value and no value.
|
| ReverseComparator<T> |
Reverse comparator.
|
| SortedLists |
Static methods pertaining to sorted
List instances. |
| Enum | Description |
|---|---|
| SortedLists.KeyAbsentBehavior |
A specification for which index to return if the list contains no elements that compare as
equal to the key.
|
| SortedLists.KeyPresentBehavior |
A specification for which index to return if the list contains at least one element that
compares as equal to the key.
|