- java.lang.Object
-
- ch.bind.philib.util.ArrayIterator<E>
-
-
Constructor Summary
Constructors Constructor Description ArrayIterator(E[] data)Creates an array iterator which will iterate over the provided array.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Enext()voidremove()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ArrayIterator
public ArrayIterator(E[] data)
Creates an array iterator which will iterate over the provided array.- Parameters:
data- the data to iterate over, may be null or empty.
-
-