Uses of Interface
com.tangosol.coherence.dslquery.ExtractorBuilder
-
Packages that use ExtractorBuilder Package Description com.tangosol.coherence.dslquery Contains packages and classes supporting the Coherence CohQL command line tool.com.tangosol.coherence.rest.query Contains classes related to the Coherence REST pluggable query engine. -
-
Uses of ExtractorBuilder in com.tangosol.coherence.dslquery
Classes in com.tangosol.coherence.dslquery that implement ExtractorBuilder Modifier and Type Class Description class
ChainedExtractorBuilder
AnExtractorBuilder
implementation that delegates buildingValueExtractor
s to a chain of ExtractorBuilders and returns the result from the first ExtractorBuilder to return a non-null value from itsChainedExtractorBuilder.realize(String, int, String)
method.class
ReflectionExtractorBuilder
AnExtractorBuilder
implementation that will build instances ofReflectionExtractor
s.class
UniversalExtractorBuilder
AnExtractorBuilder
implementation that will build instances ofUniversalExtractor
s.Fields in com.tangosol.coherence.dslquery declared as ExtractorBuilder Modifier and Type Field Description protected ExtractorBuilder
CoherenceQueryLanguage. m_bldrExtractor
TheExtractorBuilder
that will be used to realizeValueExtractor
s to be used by CohQL.Fields in com.tangosol.coherence.dslquery with type parameters of type ExtractorBuilder Modifier and Type Field Description protected List<ExtractorBuilder>
ChainedExtractorBuilder. f_listBuilders
The chain ofExtractorBuilder
s to delegate to.Methods in com.tangosol.coherence.dslquery that return ExtractorBuilder Modifier and Type Method Description ExtractorBuilder
CoherenceQueryLanguage. getExtractorBuilder()
Return theExtractorBuilder
to use to buildValueExtractor
s.Methods in com.tangosol.coherence.dslquery with parameters of type ExtractorBuilder Modifier and Type Method Description void
CoherenceQueryLanguage. setExtractorBuilder(ExtractorBuilder builder)
Set theExtractorBuilder
that will be used by CohQL queries to buildValueExtractor
s.Constructors in com.tangosol.coherence.dslquery with parameters of type ExtractorBuilder Constructor Description ChainedExtractorBuilder(ExtractorBuilder... aBuilders)
Construct a ChainedExtractorBuilder that uses the specified chain ofExtractorBuilder
s to realize instances ofValueExtractor
s. -
Uses of ExtractorBuilder in com.tangosol.coherence.rest.query
Fields in com.tangosol.coherence.rest.query declared as ExtractorBuilder Modifier and Type Field Description static ExtractorBuilder
CoherenceQueryLanguageEngine. EXTRACTOR_BUILDER
ExtractorBuilder to use.static ExtractorBuilder
CoherenceQueryLanguageEngine. MVEL_EXTRACTOR_BUILDER
ExtractorBuilder to use if optionalorg.mvel.Mvel2
module is on path.
-