Class ArrayIterable<E>
java.lang.Object
org.eclipse.persistence.jpa.jpql.utility.iterable.ArrayIterable<E>
- Type Parameters:
E
- the type of elements returned by the iterable's iterator
- All Implemented Interfaces:
Iterable<E>
- See Also:
-
Constructor Summary
ConstructorDescriptionArrayIterable
(E... array) Construct an iterable for the specified array.ArrayIterable
(E[] array, int start) Construct an iterable for the specified array, starting at the specified start index and continuing for the rest of the array.ArrayIterable
(E[] array, int start, int length) Construct an iterable for the specified array, starting at the specified start index and continuing for the specified length. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
ArrayIterable
Construct an iterable for the specified array. -
ArrayIterable
Construct an iterable for the specified array, starting at the specified start index and continuing for the rest of the array. -
ArrayIterable
Construct an iterable for the specified array, starting at the specified start index and continuing for the specified length.
-
-
Method Details