| Package | Description |
|---|---|
| org.apache.commons.io.function |
Provides IO-only related functional interfaces for lambda expressions and method references.
|
| org.apache.commons.io.input |
Provides implementations of input classes, such as
InputStream and Reader. |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
IOIteratorAdapter<E>
Adapts an
Iterator as an IOIterator. |
| Modifier and Type | Method and Description |
|---|---|
static <E> IOIterator<E> |
IOIterator.adapt(Iterable<E> iterable)
Adapts the given Iterable as an IOIterator.
|
static <E> IOIterator<E> |
IOIterator.adapt(Iterator<E> iterator)
Adapts the given Iterator as an IOIterator.
|
default IOIterator<T> |
IOBaseStream.iterator()
Like
BaseStream.iterator(). |
IOIterator<T> |
IOIterable.iterator()
Like
Iterable.iterator(). |
| Constructor and Description |
|---|
UncheckedIOIterator(IOIterator<E> delegate)
Constructs a new instance.
|
| Modifier and Type | Method and Description |
|---|---|
IOIterator<String> |
ReversedLinesFileReader.iterator() |