Click or drag to resize

IValueExtractor Interface

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
IValueExtractor is used to both extract values (for example, for sorting or filtering) from an object, and to provide an identity for that extraction.

Namespace:  Tangosol.Util
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public interface IValueExtractor

The IValueExtractor type exposes the following members.

Methods
  NameDescription
Public methodEquals
Compare the IValueExtractor with another object to determine equality.
Public methodExtract
Extract the value from the passed object.
Public methodGetHashCode
Determine a hash value for the IValueExtractor object according to the general object.GetHashCode contract.
Public methodToString
Provide a human-readable description of this IValueExtractor object.
Top
Remarks
Important Note: all classes that implement IValueExtractor interface must explicitly implement the GetHashCode and Equals(Object) methods in a way that is based solely on the object's serializable state.
See Also