|
|
#
|
LOGICAL HasNext ()
|
/** Indicates whether there's another element
@return Logical Trues if the iterator has anotehanother element */ Inherited from OpenEdge.Core.Collections.IIterator
|
|
|
#
|
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. */ Inherited from OpenEdge.Core.Collections.IIterator
|
|
|
#
|
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. */ Inherited from OpenEdge.Core.Collections.IIterator
|