Class InternalAutoDateHistogram.Bucket
- java.lang.Object
-
- org.elasticsearch.search.aggregations.InternalMultiBucketAggregation.InternalBucket
-
- org.elasticsearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram.Bucket
-
- All Implemented Interfaces:
Writeable,ToXContent,Histogram.Bucket,MultiBucketsAggregation.Bucket,HasAggregations,KeyComparable<InternalAutoDateHistogram.Bucket>
- Enclosing class:
- InternalAutoDateHistogram
public static class InternalAutoDateHistogram.Bucket extends InternalMultiBucketAggregation.InternalBucket implements Histogram.Bucket, KeyComparable<InternalAutoDateHistogram.Bucket>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.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 Modifier and Type Field Description protected DocValueFormatformat-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Bucket(long key, long docCount, DocValueFormat format, InternalAggregations aggregations)Bucket(StreamInput in, DocValueFormat format)Read from a stream.
-
Method Summary
Modifier and Type Method Description intcompareKey(InternalAutoDateHistogram.Bucket other)Compare thisMultiBucketsAggregation.Bucketskeywith another bucket.booleanequals(java.lang.Object obj)AggregationsgetAggregations()longgetDocCount()DocValueFormatgetFormatter()java.lang.ObjectgetKey()java.lang.StringgetKeyAsString()inthashCode()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation.InternalBucket
getProperty
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
isFragment
-
-
-
-
Field Detail
-
format
protected final transient DocValueFormat format
-
-
Constructor Detail
-
Bucket
public Bucket(long key, long docCount, DocValueFormat format, InternalAggregations aggregations)
-
Bucket
public Bucket(StreamInput in, DocValueFormat format) throws java.io.IOException
Read from a stream.- Throws:
java.io.IOException
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:WriteableWrite this into the StreamOutput.
-
getKeyAsString
public java.lang.String getKeyAsString()
- Specified by:
getKeyAsStringin interfaceMultiBucketsAggregation.Bucket- Returns:
- The key associated with the bucket as a string
-
getKey
public java.lang.Object getKey()
- Specified by:
getKeyin interfaceMultiBucketsAggregation.Bucket- Returns:
- The key associated with the bucket
-
getDocCount
public long getDocCount()
- Specified by:
getDocCountin interfaceMultiBucketsAggregation.Bucket- Returns:
- The number of documents that fall within this bucket
-
getAggregations
public Aggregations getAggregations()
- Specified by:
getAggregationsin interfaceHasAggregations- Specified by:
getAggregationsin interfaceMultiBucketsAggregation.Bucket- Returns:
- The sub-aggregations of this bucket
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
java.io.IOException
-
compareKey
public int compareKey(InternalAutoDateHistogram.Bucket other)
Description copied from interface:KeyComparableCompare thisMultiBucketsAggregation.Bucketskeywith another bucket.- Specified by:
compareKeyin interfaceKeyComparable<InternalAutoDateHistogram.Bucket>- Parameters:
other- the bucket that contains the key to compare to.- Returns:
- a negative integer, zero, or a positive integer as this buckets key is less than, equal to, or greater than the other buckets key.
- See Also:
Comparable.compareTo(Object)
-
getFormatter
public DocValueFormat getFormatter()
-
-