Packagesekati.collections
Interfacepublic interface IIterator
SubinterfacesIBidirectionalIterator
ImplementorsArrayBounceIterator, ArrayIterator, DisplayListIterator, FilteredIterator, StackIterator, XMLListIterator

IIterator defines how iterating collections of items is handled.



Public Methods
 MethodDefined by
  
hasNext():Boolean
Is there another item in the collection to move to.
IIterator
  
next():Object
Move to the next item and return it.
IIterator
  
peek():Object
Returns the next item in the collection without moving to it.
IIterator
Method detail
hasNext()method
public function hasNext():Boolean

Is there another item in the collection to move to.

Returns
Boolean
next()method 
public function next():Object

Move to the next item and return it.

Returns
Object
peek()method 
public function peek():Object

Returns the next item in the collection without moving to it.

Returns
Object