Class ArrayIterator
java.lang.Object
org.apache.commons.jexl2.internal.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
-
Constructor Summary
ConstructorsConstructorDescriptionArrayIterator(Object arr) Creates a new iterator instance for the specified array. -
Method Summary
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Iterator
forEachRemaining
-
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
-
hasNext
-
remove
-