Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
Extract the value from the passed object.

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

Syntax

C#
public override Object Extract(
	Object target
)

Parameters

target
Type: System..::..Object
An object to retrieve the value from.

Return Value

The extracted value as an object; null is an acceptable value.

Implements

IValueExtractor..::..Extract(Object)

Remarks

The underlying extractors are applied sequentially, so a result of a previous extractor serves as a target object for a next one. A value of null prevents any further extractions and is returned immediately.

See Also