|
| Options | Name | Purpose | |
|---|---|---|---|
| LOGICAL HasNext () |
/** Indicates whether there's another element
@return Logical Trues if the iterator has another element */
|
||
| LOGICAL HasPrevious () |
/** Indicates whether there's a previous element.
@return logical True if there is a previous element */
|
||
| Progress.Lang.Object Next () |
/** Returns the next object in the iterator. Next being the next object
at the iterator's current position.
@return Object The object at the 'next' position. */
|
||
| INTEGER NextIndex () |
/** Returns the next elements' index.
@return integer The index of the next element */
|
||
| Progress.Lang.Object Previous () |
/** Returns the previous element
@return Object */
|
||
| INTEGER PreviousIndex () |
/** Returns the index of the previous item.
@return integer The index of the previous element */
|
||
| LOGICAL Remove () |
/** Removes an entry from the iterator.
@return logical True if the operation succeeeded. */
|
| Options | Name | Purpose | |
|---|---|---|---|
| ListIterator (INPUT) |
/* Constructor
@param Progress.Collections.IList<Object> The list being iterated over */
|
||
| ListIterator (INPUT, integer) |
/* Constructor
@param Progress.Collections.IList<Object> The list being iterated over
@param integer The starting index */
|
LOGICAL HasNext ()
|
||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
LOGICAL HasPrevious ()
|
||||||||||||
Progress.Lang.Object Next ()
|
||||||||||||
INTEGER NextIndex ()
|
||||||||||||
Progress.Lang.Object Previous ()
|
||||||||||||
INTEGER PreviousIndex ()
|
||||||||||||
LOGICAL Remove ()
|
||||||||||||
ListIterator (INPUT)
|
||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ListIterator (INPUT, integer)
|
||||||||||||||||