Class CompositeValuesSourceBuilder<AB extends CompositeValuesSourceBuilder<AB>>
java.lang.Object
org.elasticsearch.search.aggregations.bucket.composite.CompositeValuesSourceBuilder<AB>
- All Implemented Interfaces:
Writeable
,ToXContent
,ToXContentFragment
- Direct Known Subclasses:
DateHistogramValuesSourceBuilder
,GeoTileGridValuesSourceBuilder
,HistogramValuesSourceBuilder
,TermsValuesSourceBuilder
public abstract class CompositeValuesSourceBuilder<AB extends CompositeValuesSourceBuilder<AB>>
extends Object
implements Writeable, ToXContentFragment
A
ValuesSource
builder for CompositeAggregationBuilder
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS
-
Method Summary
Modifier and TypeMethodDescriptionbuild
(AggregationContext context) protected abstract void
doXContentBody
(XContentBuilder builder, ToXContent.Params params) boolean
field()
Gets the field to use for this sourceSets the field to use for this sourceformat()
Gets the format to use for the output of the aggregation.Sets the format to use for the output of the aggregation.protected abstract ValuesSourceType
int
hashCode()
protected abstract CompositeValuesSourceConfig
innerBuild
(ValuesSourceRegistry registry, ValuesSourceConfig config) Actually build the values source and its associated configuration.protected abstract void
innerWriteTo
(StreamOutput out) boolean
False if documents with missing values are ignored, otherwise missing values are represented by an explicit `null` value.missingBucket
(boolean missingBucket) Iftrue
an explicitnull
bucket will represent documents with missing values.TheMissingOrder
policy used for ordering missing values.missingOrder
(String missingOrder) Sets theMissingOrder
policy to use for ordering missing values.missingOrder
(MissingOrder missingOrder) Sets theMissingOrder
policy to use for ordering missing values.name()
order()
Gets theSortOrder
to use to sort values produced this sourceSets theSortOrder
to use to sort values produced this sourceSets theSortOrder
to use to sort values produced this sourcescript()
Gets the script to use for this sourceSets the script to use for this sourceprotected ZoneId
timeZone()
The time zone for this value source.final XContentBuilder
toXContent
(XContentBuilder builder, ToXContent.Params params) Gets theValueType
for the value produced by this sourceuserValuetypeHint
(ValueType valueType) Sets theValueType
for the value produced by this sourcefinal void
writeTo
(StreamOutput out) Write this into the StreamOutput.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Field Details
-
name
-
-
Method Details
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
innerWriteTo
- Throws:
IOException
-
doXContentBody
protected abstract void doXContentBody(XContentBuilder builder, ToXContent.Params params) throws IOException - Throws:
IOException
-
toXContent
public final XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
hashCode
public int hashCode() -
equals
-
name
-
field
Sets the field to use for this source -
field
Gets the field to use for this source -
script
Sets the script to use for this source -
script
Gets the script to use for this source -
userValuetypeHint
Sets theValueType
for the value produced by this source -
userValuetypeHint
Gets theValueType
for the value produced by this source -
missingBucket
Iftrue
an explicitnull
bucket will represent documents with missing values. -
missingBucket
public boolean missingBucket()False if documents with missing values are ignored, otherwise missing values are represented by an explicit `null` value. -
missingOrder
Sets theMissingOrder
policy to use for ordering missing values.- Parameters:
missingOrder
- One of "first", "last" or "default".
-
missingOrder
Sets theMissingOrder
policy to use for ordering missing values. -
missingOrder
TheMissingOrder
policy used for ordering missing values. -
order
Sets theSortOrder
to use to sort values produced this source -
order
Sets theSortOrder
to use to sort values produced this source -
order
Gets theSortOrder
to use to sort values produced this source -
format
Sets the format to use for the output of the aggregation. -
format
Gets the format to use for the output of the aggregation. -
innerBuild
protected abstract CompositeValuesSourceConfig innerBuild(ValuesSourceRegistry registry, ValuesSourceConfig config) throws IOException Actually build the values source and its associated configuration.- Throws:
IOException
-
getDefaultValuesSourceType
-
build
- Throws:
IOException
-
timeZone
The time zone for this value source. Default implementation returnsnull
because most value source types don't support time zone.
-