org.archive.util.iterator |
|
Java Source File Name | Type | Comment |
CompositeIterator.java | Class | An iterator that's built up out of any number of other iterators. |
LineReadingIterator.java | Class | Utility class providing an Iterator interface over line-oriented
text input, as a thin wrapper over a BufferedReader. |
LookaheadIterator.java | Class | 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.java | Class | Utility class providing an Iterator interface over line-oriented
text input. |
TransformingIteratorWrapper.java | Class | Superclass for Iterators which transform and/or filter results
from a wrapped Iterator. |