| Package | com.addicted2flash.util.iterator |
| Interface | public interface IIterator |
| Subinterfaces | IListIterator |
| Implementors | CollectionIterator |
| Method | Defined 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 | ||
| hasNext | () | method |
public function hasNext():Boolean
Retrieves boolean flag whether the Iterator has
a next object in its list
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():voidRemoves the last element from the underlying collection returned by the iterator.