AbstractExtractorExtract Method |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Extract the value from the passed object.
Namespace:
Tangosol.Util.Extractor
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic virtual Object Extract(
Object obj
)
Parameters
- obj
- Type: SystemObject
An object to retrieve the value from.
Return Value
Type:
Object
The extracted value as an object;
null is an acceptable
value.
Implements
IValueExtractorExtract(Object)
ExceptionsException | Condition |
---|
InvalidCastException |
If this IValueExtractor is incompatible with the passed object to
extract a value from and the implementation requires the
passed object to be of a certain type.
|
ArgumentException |
If this AbstractExtractor cannot handle the passed object for any
other reason; an implementor should include a descriptive
message.
|
Remarks
The returned value may be null.
See Also