Click or drag to resize

SortedDictionary Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
SortedList-based IDictionary implementation that allows null keys.
Inheritance Hierarchy
SystemObject
  System.CollectionsSortedList
    Tangosol.Util.CollectionsSortedDictionary

Namespace:  Tangosol.Util.Collections
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
[SerializableAttribute]
public class SortedDictionary : SortedList, 
	IEnumerable, ISerializable

The SortedDictionary type exposes the following members.

Constructors
  NameDescription
Public methodSortedDictionary
Initializes a new instance of the SortedDictionary class that is empty, has the default initial capacity, and is sorted according to the IComparable interface implemented by each key added to the SortedDictionary object.
Public methodSortedDictionary(IComparer)
Initializes a new instance of the SortedDictionary class that is empty, has the default initial capacity, and is sorted according to the specified IComparer interface.
Public methodSortedDictionary(IDictionary)
Initializes a new instance of the SortedDictionary class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the IComparable interface implemented by each key.
Public methodSortedDictionary(Int32)
Initializes a new instance of the SortedDictionary class that is empty, has the specified initial capacity, and is sorted according to the IComparable interface implemented by each key added to the SortedDictionary object.
Public methodSortedDictionary(IComparer, Int32)
Initializes a new instance of the SortedDictionary class that is empty, has the specified initial capacity, and is sorted according to the specified IComparer interface.
Public methodSortedDictionary(IDictionary, IComparer)
Initializes a new instance of the SortedDictionary class that contains elements copied from the specified dictionary, has the same initial capacity as the number of elements copied, and is sorted according to the specified IComparer interface.
Protected methodSortedDictionary(SerializationInfo, StreamingContext)
Initializes a new instance of the SortedDictionary class that is serializable using the specified SerializationInfo and StreamingContext objects.
Top
Properties
  NameDescription
Public propertyCapacity
Gets or sets the capacity of a SortedList object.
(Inherited from SortedList.)
Public propertyComparer
Return the IComparer associated with this SortedDictionary.
Public propertyCount
Gets the number of elements contained in the ICollection.
(Overrides SortedListCount.)
Public propertyIsFixedSize
Gets a value indicating whether a SortedList object has a fixed size.
(Inherited from SortedList.)
Protected propertyIsNullValueSet
Returns true is the value for the null key is set, false otherwise.
Public propertyIsReadOnly
Gets a value indicating whether a SortedList object is read-only.
(Inherited from SortedList.)
Public propertyIsSynchronized
Gets a value indicating whether access to a SortedList object is synchronized (thread safe).
(Inherited from SortedList.)
Public propertyItem
Gets or sets the element with the specified key.
(Overrides SortedListItemObject.)
Public propertyKeys
Gets an ICollection object containing the keys of this dictionary.
(Overrides SortedListKeys.)
Public propertySyncRoot
Gets an object that can be used to synchronize access to a SortedList object.
(Inherited from SortedList.)
Public propertyValues
Gets an ICollection object containing the values in this dictionary.
(Overrides SortedListValues.)
Top
Methods
  NameDescription
Public methodAdd
Adds an element with the provided key and value to the IDictionary object.
(Overrides SortedListAdd(Object, Object).)
Protected methodAssertIsVariableSize
Throw an exception if this dictionary is fixed size.
Protected methodAssertIsWriteable
Throw an exception if this dictionary is read-only.
Public methodClear
Removes all elements from the IDictionary object.
(Overrides SortedListClear.)
Public methodClone
Creates a new object that is a copy of the current instance.
(Overrides SortedListClone.)
Public methodContains
Determines whether this dictionary contains an entry with the specified key.
(Overrides SortedListContains(Object).)
Public methodContainsKey
Determines whether the SortedDictionary contains a specific key.
(Overrides SortedListContainsKey(Object).)
Public methodContainsValue
Determines whether the SortedDictionary contains a specific value.
(Overrides SortedListContainsValue(Object).)
Public methodCopyTo
Copies the elements of the collection to an array, starting at a particular array index.
(Overrides SortedListCopyTo(Array, Int32).)
Public methodEquals(IDictionary)
Compares this dictionary with another dictionary for equality.
Public methodEquals(Object)
Determines whether the specified object is equal to this object.
(Overrides ObjectEquals(Object).)
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 methodGetByIndex
Gets the value at the specified index of a SortedList object.
(Inherited from SortedList.)
Public methodGetEnumerator
Returns an IDictionaryEnumerator object for this dictionary.
(Overrides SortedListGetEnumerator.)
Public methodGetHashCode
Returns a hash code for this object.
(Overrides ObjectGetHashCode.)
Public methodGetKey
Gets the key at the specified index of a SortedList object.
(Inherited from SortedList.)
Public methodGetKeyList
Gets the keys in a SortedList object.
(Inherited from SortedList.)
Public methodGetObjectData
Overrides serialization method to add support for null value serialization.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValueList
Gets the values in a SortedList object.
(Inherited from SortedList.)
Public methodIndexOfKey
Returns the zero-based index of the specified key in a SortedList object.
(Inherited from SortedList.)
Public methodIndexOfValue
Returns the zero-based index of the first occurrence of the specified value in a SortedList object.
(Inherited from SortedList.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemove
Removes the element with the specified key from the IDictionary object.
(Overrides SortedListRemove(Object).)
Public methodRemoveAt
Removes the element at the specified index of a SortedList object.
(Inherited from SortedList.)
Public methodSetByIndex
Replaces the value at a specific index in a SortedList object.
(Inherited from SortedList.)
Public methodToString
Returns string representation of this instance.
(Overrides ObjectToString.)
Public methodTrimToSize
Sets the capacity to the actual number of elements in a SortedList object.
(Inherited from SortedList.)
Top
Remarks
Note that null keys support intentionally breaks IDictionary contract, which states that an ArgumentNullException should be raised if the key is null.

However, this is necessary in order to match the behavior in Java and C++, where some Map implementations support null keys.

Note: This implementation is not thread safe. If you need it to be, you should wrap it with the SynchronizedDictionary.

See Also