Class UnmappedRareTerms
java.lang.Object
org.elasticsearch.search.aggregations.InternalAggregation
org.elasticsearch.search.aggregations.InternalMultiBucketAggregation<A,B>
org.elasticsearch.search.aggregations.bucket.terms.InternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>
org.elasticsearch.search.aggregations.bucket.terms.UnmappedRareTerms
- All Implemented Interfaces:
 NamedWriteable,Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment,Aggregation,MultiBucketsAggregation,RareTerms
public class UnmappedRareTerms
extends InternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>
Result of the RareTerms aggregation when the field is unmapped.
- 
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
InternalMultiBucketAggregation.InternalBucketNested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContext, InternalAggregation.ReduceContextBuilderNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFieldsNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> - 
Field Summary
FieldsFields inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalRareTerms
maxDocCount, orderFields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metadata, nameFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITERFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptioncreate(List<UnmappedRareTerms.Bucket> buckets)Create a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided buckets.createBucket(InternalAggregations aggregations, UnmappedRareTerms.Bucket prototype)Create a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.protected UnmappedRareTerms.Bucket[]createBucketsArray(int size)Create an array to hold some buckets.protected UnmappedRareTermscreateWithFilter(String name, List<UnmappedRareTerms.Bucket> buckets, SetBackedScalingCuckooFilter filter)org.elasticsearch.common.xcontent.XContentBuilderdoXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)getBucketByKey(String term)Get the bucket for the given term, or null if there is no such bucket.Return the sorted list of the buckets in this terms aggregation.getType()Returns the name of the writeable objectbooleanisMapped()Return true if this aggregation is mapped, and can lead a reduction.reduce(List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)Reduces the given aggregations to a single one and returns it.protected voidMethods inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalRareTerms
doWriteTo, doXContentCommon, equals, hashCode, reduceBucketMethods inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
copyWithRewritenBuckets, countInnerBucket, countInnerBucket, forEachBucket, getProperty, mustReduceOnSingleInternalAgg, reducePipelinesMethods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetadata, getName, getProperty, mergePipelineTreeForBWCSerialization, pipelineAggregatorsForBwcSerialization, readSize, sortValue, sortValue, 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, getNameMethods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContentMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment 
- 
Field Details
- 
NAME
- See Also:
 - Constant Field Values
 
 
 - 
 - 
Constructor Details
- 
UnmappedRareTerms
Read from a stream.- Throws:
 IOException
 
 - 
 - 
Method Details
- 
writeTermTypeInfoTo
- Specified by:
 writeTermTypeInfoToin classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>- Throws:
 IOException
 - 
getWriteableName
Description copied from interface:NamedWriteableReturns the name of the writeable object - 
getType
- Specified by:
 getTypein interfaceAggregation- Overrides:
 getTypein classInternalAggregation- Returns:
 - a string representing the type of the aggregation. This type is added to the aggregation name in the response, so that it can later be used by clients to determine type of the aggregation and parse it into the proper 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<UnmappedRareTerms,UnmappedRareTerms.Bucket>- Parameters:
 buckets- the buckets to use in the newAggregation- Returns:
 - the new 
Aggregation 
 - 
createBucket
public UnmappedRareTerms.Bucket createBucket(InternalAggregations aggregations, UnmappedRareTerms.Bucket prototype)Description copied from class:InternalMultiBucketAggregationCreate a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.- Specified by:
 createBucketin classInternalMultiBucketAggregation<UnmappedRareTerms,UnmappedRareTerms.Bucket>- Parameters:
 aggregations- the aggregations for the new bucketprototype- the bucket to use as a prototype- Returns:
 - the new bucket
 
 - 
createWithFilter
protected UnmappedRareTerms createWithFilter(String name, List<UnmappedRareTerms.Bucket> buckets, SetBackedScalingCuckooFilter filter)- Specified by:
 createWithFilterin classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>
 - 
reduce
public InternalAggregation reduce(List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)Description copied from class:InternalAggregationReduces the given aggregations to a single one and returns it. In most cases, the assumption will be the all given aggregations are of the same type (the same type as this aggregation). For best efficiency, when implementing, try reusing an existing instance (typically the first in the given list) to save on redundant object construction.- Overrides:
 reducein classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>- See Also:
 InternalAggregation.mustReduceOnSingleInternalAgg()
 - 
isMapped
public boolean isMapped()Description copied from class:InternalAggregationReturn true if this aggregation is mapped, and can lead a reduction. If this agg returns false, it should return itself if asked to lead a reduction- Overrides:
 isMappedin classInternalAggregation
 - 
doXContentBody
public final org.elasticsearch.common.xcontent.XContentBuilder doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
 doXContentBodyin classInternalAggregation- Throws:
 IOException
 - 
getBuckets
Description copied from interface:RareTermsReturn the sorted list of the buckets in this terms aggregation.- Specified by:
 getBucketsin interfaceMultiBucketsAggregation- Specified by:
 getBucketsin interfaceRareTerms- Specified by:
 getBucketsin classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>- Returns:
 - The buckets of this aggregation.
 
 - 
getBucketByKey
Description copied from interface:RareTermsGet the bucket for the given term, or null if there is no such bucket.- Specified by:
 getBucketByKeyin interfaceRareTerms- Specified by:
 getBucketByKeyin classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>
 - 
createBucketsArray
Description copied from class:InternalRareTermsCreate an array to hold some buckets. Used in collecting the results.- Specified by:
 createBucketsArrayin classInternalRareTerms<UnmappedRareTerms,UnmappedRareTerms.Bucket>
 
 -