public class ArrayIterator extends Object implements Iterator<Object>
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.
| Constructor and Description | 
|---|
| ArrayIterator(Object arr)Creates a new iterator instance for the specified array. | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | hasNext()Check to see if there is another element in the array. | 
| Object | next()Move to next element in the array. | 
| void | remove()No op--merely added to satify the  Iteratorinterface. | 
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEachRemainingpublic ArrayIterator(Object arr)
arr - The array for which an iterator is desired.public Object next()
public boolean hasNext()
Copyright © 2001–2021 The Apache Software Foundation. All rights reserved.