Package com.oracle.coherence.cdi
Annotation Type ChainedExtractor
- 
@Inherited @ExtractorBinding @Documented @Retention(RUNTIME) @Repeatable(Extractors.class) public @interface ChainedExtractor
AExtractorBindingannotation representing aChainedExtractor.- Since:
 - 20.06
 - Author:
 - Jonathan Knight 2019.10.25
 
 
- 
- 
Required Element Summary
Required Elements Modifier and Type Required Element Description String[]valueReturns the a method or property name to use when creating aChainedExtractor. 
 - 
 
- 
- 
Element Detail
- 
value
String[] value
Returns the a method or property name to use when creating aChainedExtractor.If the value does not end in
"()"the value is assumed to be a property name. If the value is prefixed with one of the accessor prefixes"get"or"is"and ends in"()"this extractor is a property extractor. Otherwise, if the value just ends in"()"this value is considered a method name.- Returns:
 - the value used for the where clause when creating a 
ChainedExtractor 
 
 - 
 
 -