Class ArrayValuesSourceParser<VS extends org.elasticsearch.search.aggregations.support.ValuesSource>
java.lang.Object
org.elasticsearch.search.aggregations.matrix.ArrayValuesSourceParser<VS>
- All Implemented Interfaces:
org.elasticsearch.search.aggregations.Aggregator.Parser
- Direct Known Subclasses:
ArrayValuesSourceParser.BytesValuesSourceParser,ArrayValuesSourceParser.GeoPointValuesSourceParser,ArrayValuesSourceParser.NumericValuesSourceParser
public abstract class ArrayValuesSourceParser<VS extends org.elasticsearch.search.aggregations.support.ValuesSource>
extends Object
implements org.elasticsearch.search.aggregations.Aggregator.Parser
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classstatic class -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract ArrayValuesSourceAggregationBuilder<?>createFactory(String aggregationName, org.elasticsearch.search.aggregations.support.ValuesSourceType valuesSourceType, org.elasticsearch.search.aggregations.support.ValueType targetValueType, Map<org.elasticsearch.xcontent.ParseField, Object> otherOptions) Creates aValuesSourceAggregationBuilderfrom the information gathered by the subclass.final ArrayValuesSourceAggregationBuilder<?>protected abstract booleantoken(String aggregationName, String currentFieldName, org.elasticsearch.xcontent.XContentParser.Token token, org.elasticsearch.xcontent.XContentParser parser, Map<org.elasticsearch.xcontent.ParseField, Object> otherOptions) Allows subclasses ofArrayValuesSourceParserto parse extra parameters and store them in aMapwhich will later be passed tocreateFactory(String, ValuesSourceType, ValueType, Map).
-
Method Details
-
parse
public final ArrayValuesSourceAggregationBuilder<?> parse(String aggregationName, org.elasticsearch.xcontent.XContentParser parser) throws IOException - Specified by:
parsein interfaceorg.elasticsearch.search.aggregations.Aggregator.Parser- Throws:
IOException
-
createFactory
protected abstract ArrayValuesSourceAggregationBuilder<?> createFactory(String aggregationName, org.elasticsearch.search.aggregations.support.ValuesSourceType valuesSourceType, org.elasticsearch.search.aggregations.support.ValueType targetValueType, Map<org.elasticsearch.xcontent.ParseField, Object> otherOptions) Creates aValuesSourceAggregationBuilderfrom the information gathered by the subclass. Options parsed inArrayValuesSourceParseritself will be added to the factory after it has been returned by this method.- Parameters:
aggregationName- the name of the aggregationvaluesSourceType- the type of theValuesSourcetargetValueType- the target type of the final value output by the aggregationotherOptions- aMapcontaining the extra options parsed by thetoken(String, String, XContentParser.Token, XContentParser, Map)method- Returns:
- the created factory
-
token
protected abstract boolean token(String aggregationName, String currentFieldName, org.elasticsearch.xcontent.XContentParser.Token token, org.elasticsearch.xcontent.XContentParser parser, Map<org.elasticsearch.xcontent.ParseField, Object> otherOptions) throws IOExceptionAllows subclasses ofArrayValuesSourceParserto parse extra parameters and store them in aMapwhich will later be passed tocreateFactory(String, ValuesSourceType, ValueType, Map).- Parameters:
aggregationName- the name of the aggregationcurrentFieldName- the name of the current field being parsedtoken- the current token for the parserparser- the parserotherOptions- aMapof options to be populated by successive calls to this method which will then be passed to thecreateFactory(String, ValuesSourceType, ValueType, Map)method- Returns:
trueif the current token was correctly parsed,falseotherwise- Throws:
IOException- if an error occurs whilst parsing
-