|
|
LOGICAL Add (Object)
|
/** Appends the specified element to list if not already present
@param Object The element to add to the collection
@return logical True if the operation succeeded. */
|
|
|
LOGICAL AddAll (ICollection)
|
/** Appends all of the elements in the specified collection
@param ICollection A collection of elements to add to the collection
@return logical True if the operation succeeded. */
|
|
|
LOGICAL AddArray (Object[])
|
/** Adds an array of elements to the collection
@param Object[] An array of elements to add to the collection
@return logical True if the operation succeeded. */
|
|
|
Clear ()
|
/** Removes all of the elements from this list */
|
|
|
LOGICAL Contains (Object)
|
/** Check whether the colleciton contains at least one object
that matches the passed in object.
@param Object The object
@return logical Returns true if the object is in the collection */
|
|
|
LOGICAL ContainsAll (ICollection)
|
/** Returns true if this list contains all of the elements of the
specified collection.
@param ICollection The collection of obejcts to check
@return logical True if all the elements match */
|
|
|
LOGICAL IsEmpty ()
|
/** Indicates whether this collection has any elements.
@return logical True if the collection is empty. */
|
|
|
LOGICAL Remove (Object)
|
/** Removes the first occurrence in this list of the specified element
@param Object The
@return logical True if the operation succeded. */
|
|
|
LOGICAL RemoveAll (ICollection)
|
/** Removes from this list all the elements that are contained in the
specified collection (optional operation).
@param ICollection The collection to remove.
@return logical True if the operation succeeded. */
|
|
|
LOGICAL RetainAll (ICollection)
|
/** Retains only the elements in this list that are contained in the
specified collection (optional operation).
@param ICollection The collection to retain
@return Logical True if the object changed */
|
|
|
Progress.Lang.Object ToArray ()
|
/** Returns the contents of the collection as an array of objects.
@return Object[] The collection returnes as an object array */
|
|
|
ToTable (table-handle)
|
/** Returns the contents of the collection as temp-table. This is a shallow
copy of the collection - basically a new set of references is created.
@param output table-handle The collection as a temp-table */
|