Class MultiDimensionalIterator<T>

java.lang.Object
org.codehaus.commons.compiler.util.iterator.MultiDimensionalIterator<T>
Type Parameters:
T - The type of the objects that the returned iterator produces
All Implemented Interfaces:
Iterator<T>

public class MultiDimensionalIterator<T> extends Object implements Iterator<T>
An 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.

  • Field Details

    • nest

      private final Iterator<?>[] nest
    • EMPTY_ITERATOR

      private static final Iterator<Object> EMPTY_ITERATOR
  • Constructor Details

    • MultiDimensionalIterator

      public MultiDimensionalIterator(Iterator<?> delegate, int dimensionCount)
  • Method Details