
| Modifier and Type | Field and Description | 
|---|---|
| (package private) Iterator<E> | currentThe iterator we are currently processing | 
| (package private) Iterator<Iterator<E>> | iteratorsAll the iterators we process | 
| (package private) Iterator<E> | lastThe last iterator we returned an object for, for remove() | 
| Constructor and Description | 
|---|
| MergedIterator(Collection<Iterator<E>> iterators)Auxillary constructor with Collections | 
| MergedIterator(Iterator<E>... iterators)Auxillary constructor with arrays | 
| MergedIterator(Iterator<Iterator<E>> iterators)Main constructor. |