Package | com.ericfeminella.utils.iterators |
Class | public class ArrayCollectionIterator |
Inheritance | ArrayCollectionIterator com.ericfeminella.utils.iterators.Iterator |
Method | Defined by | ||
---|---|---|---|
hasNext():Boolean
Determines if there are elements remaining in the aggregate
| ArrayCollectionIterator | ||
next():*
Returns the next element in the collection
| ArrayCollectionIterator | ||
setAggregate(aggregate:*):void
Sets the aggregate object in which the Iterator instance is to traverse over
| ArrayCollectionIterator |
hasNext | () | method |
public override function hasNext():Boolean
Determines if there are elements remaining in the aggregate
ReturnsBoolean — true if an element remains in the aggregate, false if not
|
next | () | method |
public override function next():*
Returns the next element in the collection
Returns* — Next element in collection based on the current index
|
setAggregate | () | method |
public override function setAggregate(aggregate:*):void
Sets the aggregate object in which the Iterator instance is to traverse over
Parametersaggregate:* |