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