OpenEdge.Core.Collections.ICollection
- Last Updated: January 15, 2026
- 4 minute read
- OpenEdge
- Documentation
|
Method Summary
| Options | Name | Purpose | |
|---|---|---|---|
| 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. */
|
||
| LOGICAL AddNull () |
/** Appends an unknown value element to the set if not already present
@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 */
|
Property Summary
| Options | Name | Purpose | |
|---|---|---|---|
| INTEGER Size |
|
Method Detail
LOGICAL Add (Object)
|
||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LOGICAL AddAll (ICollection)
|
||||||||||||||||||
LOGICAL AddArray (Object[])
|
||||||||||||||||||
LOGICAL AddNull ()
|
||||||||||||||||||
Clear ()
|
||||||||||||||||||
LOGICAL Contains (Object)
|
||||||||||||||||||
LOGICAL ContainsAll (ICollection)
|
||||||||||||||||||
LOGICAL IsEmpty ()
|
||||||||||||||||||
LOGICAL Remove (Object)
|
||||||||||||||||||
LOGICAL RemoveAll (ICollection)
|
||||||||||||||||||
LOGICAL RetainAll (ICollection)
|
||||||||||||||||||
Progress.Lang.Object ToArray ()
|
||||||||||||||||||
ToTable (table-handle)
|
||||||||||||||||||
Property Detail
INTEGER Size
|
||||||||
|---|---|---|---|---|---|---|---|---|