Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Compares two arguments for order.

Namespace: Tangosol.Util.Comparator
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public override int Compare(
	Object o1,
	Object o2
)

Parameters

o1
Type: System..::..Object
The first object to be compared.
o2
Type: System..::..Object
The second object to be compared.

Return Value

A negative integer, zero, or a positive integer as the first argument is less than, equal to, or greater than the second.

Implements

IComparer..::..Compare(Object, Object)

Remarks

The arguments must be ICacheEntry objects. Depending on the comparison style, this method will pass either the entries' values, keys or the entries themselves to the underlying IComparer.

See Also