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() |
E |
next() |
void |
remove() |
String |
toString() |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEachRemaining
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 iterationIllegalArgumentException
- 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 arrayEclipseLink 2.6.3, "build v20160428-59c81c5" API Reference