|
Class Summary |
| CompositeIterator |
An iterator that's built up out of any number of other iterators. |
| LineReadingIterator |
Utility class providing an Iterator interface over line-oriented
text input, as a thin wrapper over a BufferedReader. |
| LookaheadIterator<T> |
Superclass for Iterators which must probe ahead to know if
a 'next' exists, and thus have a cached next between a call
to hasNext() and next(). |
| RegexpLineIterator |
Utility class providing an Iterator interface over line-oriented
text input. |
| TransformingIteratorWrapper<Original,Transformed> |
Superclass for Iterators which transform and/or filter results
from a wrapped Iterator. |