Packagecom.addicted2flash.util.iterator
Interfacepublic interface IIterator
SubinterfacesIListIterator
ImplementorsCollectionIterator

Generic interface for traversing data-structures.



Public Methods
 MethodDefined by
  
hasNext():Boolean
Retrieves boolean flag whether the Iterator has a next object in its list
IIterator
  
next():*
Retrieves next object in data-structure
IIterator
  
remove():void
Removes the last element from the underlying collection returned by the iterator.
IIterator
Method detail
hasNext()method
public function hasNext():Boolean

Retrieves boolean flag whether the Iterator has a next object in its list

Returns
Boolean — Boolean flag whether the Iterator has a next object in its list
next()method 
public function next():*

Retrieves next object in data-structure

Returns
* — next object in data-structure
remove()method 
public function remove():void

Removes the last element from the underlying collection returned by the iterator.