java.util collection classes.See: Description
| Interface | Description |
|---|---|
| IterableUtil.ElementWithContext<T> |
A helper interface which extends the "iterator" pattern with the possibility to access not only the "current"
element, but also the previous and next element.
|
| IteratorUtil.ArrayIterator<T> |
An
Iterator that has a notion of an "array index", which is the index of the "next" element in an
array. |
| Stack<T> |
The interface for an (unsynchronized) "stack", which is painfully missing from
java.util. |
| Class | Description |
|---|---|
| ArrayStack<T> |
Array-based implementation of a
Stack. |
| CollectionUtil |
java.util.collection-related utility methods. |
| IdentityLinearMap<K,V> |
An identity map (see
IdentityHashMap) that performs very well for a SMALL number of entries. |
| IterableUtil |
Various
Iterable-related utility methods. |
| IteratorUtil |
Various
Iterator-related utility methods. |
| LinearMap<K,V> |
A
Map that performs very well for a SMALL number of entries. |
| MapUtil |
Various utility methods for map processing.
|
| Sets |
Utility methods related to
Sets. |
java.util collection classes.