public class ArrayIterator<E> extends java.lang.Object implements IterableIterator<E>
ArrayIterator provides a Iterator for an array of objects.| Constructor and Description |
|---|
ArrayIterator(T... array)
Creates a new
ArrayIterator for the specified array. |
ArrayIterator(T[] array,
int start,
int length)
Creates a new
ArrayIterator for the specified array, starting at the specified
start index and continuing for the specified length. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
hasNext() |
java.util.Iterator<E> |
iterator() |
E |
next() |
void |
remove() |
java.lang.String |
toString() |
public ArrayIterator(T... array)
ArrayIterator for the specified array.array - The object containing the items to iterate overpublic ArrayIterator(T[] array,
int start,
int length)
ArrayIterator for the specified array, starting at the specified
start index and continuing for the specified length.array - The object containing the items to iterate overstart - The beginning of the iterationlength - The length of the iterationjava.lang.IllegalArgumentException - The start index is either a negative value or greater than
the length of the array or the length to copy goes beyond the length of the arraypublic boolean hasNext()
hasNext in interface java.util.Iterator<E>public java.util.Iterator<E> iterator()
iterator in interface java.lang.Iterable<E>public void remove()
remove in interface java.util.Iterator<E>public java.lang.String toString()
toString in class java.lang.ObjectEclipseLink 2.4.2, "build v20130514-5956486" API Reference