Click or drag to resize

LongSortedList Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
A data structure resembling an array keyed by .NET long values.
Inheritance Hierarchy
SystemObject
  Tangosol.UtilLongSortedList

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class LongSortedList : ILongArray

The LongSortedList type exposes the following members.

Constructors
  NameDescription
Public methodLongSortedList
Default constructor.
Top
Properties
  NameDescription
Public propertyCount
Determine the size of the ILongArray.
Public propertyFirstIndex
Determine the first index that exists in the ILongArray.
Public propertyIsEmpty
Determine if ILongArray is empty.
Public propertyItem
The value stored at the specified index.
Public propertyLastIndex
Determine the last index that exists in the ILongArray.
Public propertySyncRoot
Gets an object that can be used to synchronize access to this ILongArray.
Top
Methods
  NameDescription
Public methodAdd
Add the passed element value to the ILongArray and return the index at which the element value was stored.
Public methodClear
Remove all elements from the ILongArray.
Public methodContains
Determine if the ILongArray contains the specified element.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExists
Determine if the specified index is in use.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetEnumerator
Obtain an IEnumerator of the contents of the ILongArray.
Public methodGetEnumerator(Int64)
Obtain an IEnumerator of the contents of the ILongArray, starting at a particular index such that the first call to MoveNext will set the location of the enumerator at the first existent index that is greater than or equal to the specified index, or will throw an IndexOutOfRangeException if there is no such existent index.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Remove the specified index from the ILongArray, returning its associated value.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
LongSortedList structure is based on System.Collections.SortedList collection.
See Also