Uses of Class
org.palo.api.impl.utils.ArrayListInt.Iterator

Packages that use ArrayListInt.Iterator
org.palo.api.impl.utils   
 

Uses of ArrayListInt.Iterator in org.palo.api.impl.utils
 

Subclasses of ArrayListInt.Iterator in org.palo.api.impl.utils
 class ArrayListInt.ListIterator
          ArrayListInt.ListIterator is a bidirectional iterator with basic versioning.
 

Methods in org.palo.api.impl.utils that return ArrayListInt.Iterator
 ArrayListInt.Iterator ArrayListInt.iterator()
          Returns a simple forward iterator to the caller which can be used to retrieve the contents of the arraylist like this: ArrayListInt.Iterator it = alist.iterator(); while (it.hasNext()) { int l = li.previous (); System.out.println (" : " + l); } For backwards iteration @see ListIterator.