
T - object typepublic final class IterableIteratorAdapter<T> extends Object implements IterableIterator<T>
| Modifier and Type | Field and Description |
|---|---|
(package private) Iterator<T> |
iter
Parent Iterator
|
(package private) Iterable<T> |
parent
Parent Iterable
|
| Constructor and Description |
|---|
IterableIteratorAdapter(Iterable<T> parent)
Constructor from an Iterable (preferred).
|
IterableIteratorAdapter(Iterator<T> iter)
Constructor from an Iterator.
|