Class ArrayIterator<E>
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.utility.iterator.ArrayIterator<E>
-
-
Constructor Summary
Constructors Constructor Description ArrayIterator(T... array)Creates a newArrayIteratorfor the specified array.ArrayIterator(T[] array, int start, int length)Creates a newArrayIteratorfor the specified array, starting at the specified start index and continuing for the specified length.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Enext()voidremove()StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Constructor Detail
-
ArrayIterator
@SafeVarargs public ArrayIterator(T... array)
Creates a newArrayIteratorfor the specified array.- Parameters:
array- The object containing the items to iterate over
-
ArrayIterator
public ArrayIterator(T[] array, int start, int length)Creates a newArrayIteratorfor the specified array, starting at the specified start index and continuing for the specified length.- Parameters:
array- The object containing the items to iterate overstart- The beginning of the iterationlength- The length of the iteration- Throws:
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 array
-
-