| CollectionUtils Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: Tangosol.Util
 Syntax
Syntaxpublic abstract class CollectionUtils
The CollectionUtils type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | CollectionUtils | Initializes a new instance of the CollectionUtils class | 
 Methods
Methods| Name | Description | |
|---|---|---|
|   | AcquireReadLock | 
            Acquire a read-lock on the supplied collection, if possible. While 
            held, A read-lock prevents the given collection from being modified.
             | 
|   | Add(ICollection, Object) | 
            Adds a new element to the specified collection.
             | 
|   | Add(ICollection, Object, Boolean) | 
            Adds a new element to the specified collection.
             | 
|   | AddAll | 
            Adds all of the elements of the "source" collection to the
            "target" collection.
             | 
|   | Clear | 
            Clears specified collection.
             | 
|   | Contains | 
            Determines whether an element is in the collection.
             | 
|   | ContainsAll | 
            Determines whether all elements from the source collection are
            contained in the target collection.
             | 
|  | Equals | Determines whether the specified object is equal to the current object.(Inherited from Object.) | 
|   | EqualsArrayT | 
            Returns true if the two specified arrays are equal to one another. 
            Two arrays are considered equal if both arrays contain the same number 
            of elements, and all corresponding pairs of elements in the two arrays 
            are equal. In other words, two arrays are equal if they contain the same 
            elements in the same order. Also, two array references are considered 
            equal if both are null
             | 
|   | EqualsDeep | 
            Examines whether two parameters are two equal array objects.
             | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) | 
|   | GetBit | 
            Get the value of the specified bit.
             | 
|  | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|   | HeadList | 
            Returns a portion of the list whose keys are less than the limit
            object parameter.
             | 
|  | MemberwiseClone | Creates a shallow copy of the current Object.(Inherited from Object.) | 
|   | Randomize(IList) | 
            Randomize the order of the elements within the passed list.
             | 
|   | RandomizeT(IListT) | 
            Randomize the order of the elements within the passed list.
             | 
|   | RandomizeT(T) | 
            Reorder elements of a type T array in a random way.
             | 
|   | ReleaseReadLock | 
            Release a read-lock on the supplied collection.
             | 
|   | Remove | 
            Removes an element from the specified collection.
             | 
|   | RemoveAll | 
            Removes all elements contained in the source collection from the
            target collection.
             | 
|   | RetainAll | 
            Removes all elements from the target collection that are not
            contained in the source collection.
             | 
|   | SetBit | 
            Set the specified bit to the specified value.
             | 
|   | TailList | 
            Returns a portion of the list whose keys are greater than the
            limit object parameter.
             | 
|   | ToArray | 
            Returns an array containing all of the elements from the
            specified collection.
             | 
|   | ToByteArray | 
            Convert an array of sbyte values to an array of corresponding
            byte values.
             | 
|   | ToByteArrayUnchecked | 
            Convert an array of sbyte values to an array of corresponding
            byte values.
             | 
|   | ToDelimitedString | 
            Format the content of the passed Object array as a delimited string.
             | 
|   | ToSByteArray | 
            Convert an array of byte values to an array of corresponding
            sbyte values.
             | 
|   | ToSByteArrayUnchecked | 
            Convert an array of byte values to an array of corresponding
            sbyte values.
             | 
|  | ToString | Returns a string that represents the current object.(Inherited from Object.) | 
|   | TrimLeftZeroBytes | 
            Trim zero bytes from the beggining of the array.
             | 
 See Also
See Also