T - The type of the objects that the returned iterator producespublic class MultiDimensionalIterator<T> extends Object implements Iterator<T>
Iterator that iterates over a delegate, which produces arrays, Collections,
Enumerations or Iterators. This Iterator returns the elements
of these objects.
The count of dimensions is declared at construction. Count "1" produces an Iterator that adds no
functionality to its delegate, count "2" produces an Iterator that behaves as explained above, and so
forth.
| Constructor and Description |
|---|
MultiDimensionalIterator(Iterator<?> delegate,
int dimensionCount) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext() |
T |
next() |
void |
remove() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingpublic MultiDimensionalIterator(Iterator<?> delegate, int dimensionCount)
Copyright © 2019. All rights reserved.