Click or drag to resize

SafeComparer Class

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Null-safe delegating comparator.
Inheritance Hierarchy

Namespace:  Tangosol.Util.Comparator
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public class SafeComparer : IQueryCacheComparer, 
	IEntryAwareComparer, IComparer, IPortableObject

The SafeComparer type exposes the following members.

Constructors
  NameDescription
Public methodSafeComparer
Default constructor.
Public methodSafeComparer(IComparer)
Construct a SafeComparer delegating to the specified (wrapped) comparer.
Top
Properties
  NameDescription
Public propertyComparer
The wrapped IComparer.
Top
Methods
  NameDescription
Public methodCompare
Compares its two arguments for order.
Public methodCompareEntries
Compare two entries based on the rules specified by IComparer.
Public methodStatic memberCompareSafe
Compares its two arguments for order.
Public methodEquals
Determine if two comparers are equal.
(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 methodGetHashCode
Return the hash code for this comparator.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsKeyComparer
Specifies whether this comparer expects to compare keys or values.
Public methodStatic memberIsKeyComparer(IComparer)
Check whether the specified comparer expects to compare keys or values.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodReadExternal
Restore the contents of a user type instance by reading its state using the specified IPofReader object.
Public methodToString
Returns a human-readable description for this IComparer.
(Overrides ObjectToString.)
Public methodWriteExternal
Save the contents of a POF user type instance by writing its state using the specified IPofWriter object.
Top
Fields
  NameDescription
Public fieldStatic memberInstance
The trivial SafeComparer.
Protected fieldm_comparer
The wrapped IComparer.
Top
Remarks

null values are evaluated as "less then" any non-null value. If the wrapped comparator is not specified then all non-null values must implement the IComparable interface.

Use SafeComparer.Instance to obtain an instance of non-delegating SafeComparer.

See Also