Class ArrayIterator
java.lang.Object
org.apache.commons.jexl3.internal.introspection.ArrayIterator
An Iterator wrapper for an Object[]. This will allow us to deal with all array like structures in a consistent manner.
WARNING : this class's operations are NOT synchronized. It is meant to be used in a single thread, newly created for each use in the #foreach() directive. If this is used or shared, synchronize in the next() method.
- Since:
- 1.0
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionArrayIterator
(Object arr) Creates a new iterator instance for the specified array. -
Method Summary
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
-
Field Details
-
array
The objects to iterate over. -
size
private final int sizeThe size of the array. -
pos
private int posThe current position and size in the array.
-
-
Constructor Details
-
ArrayIterator
Creates a new iterator instance for the specified array.- Parameters:
arr
- The array for which an iterator is desired.
-
-
Method Details
-
next
Move to next element in the array. -
hasNext
public boolean hasNext()Check to see if there is another element in the array. -
remove
public void remove()No op--merely added to satify theIterator
interface.
-