| Package | system.data |
| Interface | public interface OrderedIterator extends Iterator |
| Implementors | PageByPageIterator, PageableArrayModel, TimelineIterator |
| Method | Defined By | ||
|---|---|---|---|
![]() | hasNext():Boolean
Returns true if the iteration has more elements. | Iterator | |
hasPrevious():Boolean
Checks to see if there is a previous element that can be iterated to. | OrderedIterator | ||
![]() | key():*
Returns the current key of the internal pointer of the iterator (optional operation). | Iterator | |
![]() | next():*
Returns the next element in the iteration. | Iterator | |
previous():*
Returns the previous element in the collection. | OrderedIterator | ||
![]() | remove():*
Removes from the underlying collection the last element returned by the iterator (optional operation). | Iterator | |
![]() | reset():void
Reset the internal pointer of the iterator (optional operation). | Iterator | |
![]() | seek(position:*):void
Changes the position of the internal pointer of the iterator (optional operation). | Iterator | |
| hasPrevious | () | method |
public function hasPrevious():BooleanChecks to see if there is a previous element that can be iterated to.
ReturnsBoolean |
| previous | () | method |
public function previous():*Returns the previous element in the collection.
Returns* — the previous element in the collection.
|