|
Class Summary |
| AbstractListIterator<V> |
The class provides a skeletal implementation of the list iterator interface,
to help with custom implementations. |
| AbstractMapIterator<K,V> |
The class provides a skeletal implementation of the map iterator interface,
to help with custom implementations. |
| ArrayListIterator<V> |
This class implements a list iterator which iterates over the values in an
array and their respective positions. |
| NullListIterator<V> |
This class implements an iterator that has no values. |
| NullMapIterator<K,V> |
This class implements an iterator that has no values. |
| SharedArrayListIterator<V> |
This class provides a list interator implementation which iterates over a
slice of a shared object array. |
| SkippingArrayListIterator<V> |
This class implements a map iterator which iterates over values in an array
and their respective position in it, skipping over a fixed number of
elements between each iteration. |
| SkippingSharedArrayListIterator<V> |
This class provides a map interator implementation which iterates over a
slice of a shared object array. |
| VariableLengthListIterator<V> |
This class implements a map iterator which has a variable number of
iterations. |