| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.velocity.util.ArrayIterator
public class 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.
| Constructor Summary | |
|---|---|
| ArrayIterator(Object array)Creates a new iterator instance for the specified array. | |
| Method Summary | |
|---|---|
|  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. | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
public ArrayIterator(Object array)
array - The array for which an iterator is desired.| Method Detail | 
|---|
public Object next()
next in interface Iteratorpublic boolean hasNext()
hasNext in interface Iteratorpublic void remove()
Iterator interface.
remove in interface Iterator| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||