java.util collection classes.See: Description
| Interface | Description | 
|---|---|
| ElementWithContext<T> | A helper interface which extends the "iterator" pattern with the possibility to access not only the current element
 of a sequence, but also the previous and next element. | 
| IterableUtil.ElementWithContext<T> | Deprecated Use  ElementWithContextinstead | 
| IteratorUtil.ArrayIterator<T> | An  Iteratorthat has a notion of an "array index", which is the index of the "next" element in an
 array. | 
| Peekerator<E> | Extends the  Iteratorwith the capability to "peek" an element. | 
| 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  Mapthat performs very well for a SMALL number of entries. | 
| MapUtil | Various utility methods for map processing. | 
| Peekerators | Utility functionality related to  Peekerators. | 
| Sets | Utility methods related to  Sets. | 
| StringPeekerator | Extends a  Peekerator<String>with various methods that check for string equality or pattern
 matching. | 
java.util collection classes.Copyright © 2018 Arno Unkrig. All rights reserved.