Class StringTerms
java.lang.Object
org.elasticsearch.search.aggregations.InternalAggregation
org.elasticsearch.search.aggregations.InternalMultiBucketAggregation<A,B>
org.elasticsearch.search.aggregations.bucket.terms.InternalTerms<A,B>
org.elasticsearch.search.aggregations.bucket.terms.InternalMappedTerms<StringTerms,StringTerms.Bucket>
org.elasticsearch.search.aggregations.bucket.terms.StringTerms
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentFragment,Aggregation,MultiBucketsAggregation,Terms
public class StringTerms extends InternalMappedTerms<StringTerms,StringTerms.Bucket>
Result of the
TermsAggregator when the field is a String.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStringTerms.BucketNested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
InternalMultiBucketAggregation.InternalBucketNested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContextNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFieldsNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNAMEFields inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalMappedTerms
bucketMap, buckets, docCountError, format, otherDocCount, shardSize, showTermDocCountErrorFields inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalTerms
DOC_COUNT_ERROR_UPPER_BOUND_FIELD_NAME, minDocCount, order, requiredSize, SUM_OF_OTHER_DOC_COUNTSFields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metaData, nameFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER -
Constructor Summary
Constructors Constructor Description StringTerms(java.lang.String name, BucketOrder order, int requiredSize, long minDocCount, java.util.List<PipelineAggregator> pipelineAggregators, java.util.Map<java.lang.String,java.lang.Object> metaData, DocValueFormat format, int shardSize, boolean showTermDocCountError, long otherDocCount, java.util.List<StringTerms.Bucket> buckets, long docCountError)StringTerms(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description protected StringTermscreate(java.lang.String name, java.util.List<StringTerms.Bucket> buckets, long docCountError, long otherDocCount)StringTermscreate(java.util.List<StringTerms.Bucket> buckets)Create a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided buckets.StringTerms.BucketcreateBucket(InternalAggregations aggregations, StringTerms.Bucket prototype)Create a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.protected StringTerms.Bucket[]createBucketsArray(int size)Create an array to hold some buckets.java.lang.StringgetWriteableName()Returns the name of the writeable objectMethods inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalMappedTerms
doXContentBody, equals, getBucketByKey, getBuckets, getDocCountError, getShardSize, getSumOfOtherDocCounts, hashCode, setDocCountError, writeTermTypeInfoToMethods inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalTerms
doWriteTo, doXContentCommon, reduce, reduceBucketMethods inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
countInnerBucket, countInnerBucket, getProperty, reducePipelinesMethods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetaData, getName, getProperty, getType, isMapped, pipelineAggregators, readSize, toString, toXContent, writeSize, writeToMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetaData, getName, getType
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
-
Constructor Details
-
StringTerms
public StringTerms(java.lang.String name, BucketOrder order, int requiredSize, long minDocCount, java.util.List<PipelineAggregator> pipelineAggregators, java.util.Map<java.lang.String,java.lang.Object> metaData, DocValueFormat format, int shardSize, boolean showTermDocCountError, long otherDocCount, java.util.List<StringTerms.Bucket> buckets, long docCountError) -
StringTerms
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
getWriteableName
public java.lang.String getWriteableName()Description copied from interface:NamedWriteableReturns the name of the writeable object -
create
Description copied from class:InternalMultiBucketAggregationCreate a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided buckets.- Specified by:
createin classInternalMultiBucketAggregation<StringTerms,StringTerms.Bucket>- Parameters:
buckets- the buckets to use in the newAggregation- Returns:
- the new
Aggregation
-
createBucket
public StringTerms.Bucket createBucket(InternalAggregations aggregations, StringTerms.Bucket prototype)Description copied from class:InternalMultiBucketAggregationCreate a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.- Specified by:
createBucketin classInternalMultiBucketAggregation<StringTerms,StringTerms.Bucket>- Parameters:
aggregations- the aggregations for the new bucketprototype- the bucket to use as a prototype- Returns:
- the new bucket
-
create
protected StringTerms create(java.lang.String name, java.util.List<StringTerms.Bucket> buckets, long docCountError, long otherDocCount)- Specified by:
createin classInternalTerms<StringTerms,StringTerms.Bucket>
-
createBucketsArray
Description copied from class:InternalTermsCreate an array to hold some buckets. Used in collecting the results.- Specified by:
createBucketsArrayin classInternalTerms<StringTerms,StringTerms.Bucket>
-