Packagecom.gestureworks.cml.interfaces
Interfacepublic interface IListIterator extends IIterator
Implementors List

Implements a 2-way iterator on Lists.



Public Methods
 MethodDefined By
 Inherited
hasNext():Boolean
Returns true if the iteration can return one more than the current index
IIterator
  
hasPrev():Boolean
Returns true if the collection has items which have a lower index than the current index
IListIterator
 Inherited
next():*
Returns the next value in the iteration.
IIterator
  
prev():*
Returns the previous item in the collection
IListIterator
Method Detail
hasPrev()method
public function hasPrev():Boolean

Returns true if the collection has items which have a lower index than the current index

Returns
Boolean
prev()method 
public function prev():*

Returns the previous item in the collection

Returns
*