|
Class Summary |
| ArrayMap<K,V> |
A simple Map implementation, taking roughly the same strategy as ArrayList,
resulting in a memory-efficient and (for small amounts of key-value pairs)
fast implementation. |
| CastingList<E> |
A list that wraps another list and casts its elements to a specific subtype
of the list's element type. |
| CollectionUtil |
|
| FixedSizeQueue<E> |
|
| ListView<E> |
ListView represents an immutable view on another list, which is also assumed
to be immutable. |
| LRUMap<K,V> |
Map implementation providing an LRU algorithm and an optional maximum size. |
| ReverseComparator<T> |
ReverseComparator reverses the result of another Comparator. |
| UnsynchronizedStack<T> |
This class is exactly the same as java.util.Stack except that it isn't
synchronized. |