Class InternalDateHistogram.Bucket
- java.lang.Object
-
- org.elasticsearch.search.aggregations.InternalMultiBucketAggregation.InternalBucket
-
- org.elasticsearch.search.aggregations.bucket.histogram.InternalDateHistogram.Bucket
-
- All Implemented Interfaces:
Writeable
,ToXContent
,Histogram.Bucket
,MultiBucketsAggregation.Bucket
,HasAggregations
,KeyComparable<InternalDateHistogram.Bucket>
- Enclosing class:
- InternalDateHistogram
public static class InternalDateHistogram.Bucket extends InternalMultiBucketAggregation.InternalBucket implements Histogram.Bucket, KeyComparable<InternalDateHistogram.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 DocValueFormat
format
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description Bucket(long key, long docCount, boolean keyed, DocValueFormat format, InternalAggregations aggregations)
Bucket(StreamInput in, boolean keyed, DocValueFormat format)
Read from a stream.
-
Method Summary
Modifier and Type Method Description int
compareKey(InternalDateHistogram.Bucket other)
Compare thisMultiBucketsAggregation.Bucket
skey
with another bucket.boolean
equals(java.lang.Object obj)
Aggregations
getAggregations()
long
getDocCount()
DocValueFormat
getFormatter()
java.lang.Object
getKey()
java.lang.String
getKeyAsString()
boolean
getKeyed()
int
hashCode()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
void
writeTo(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, boolean keyed, DocValueFormat format, InternalAggregations aggregations)
-
Bucket
public Bucket(StreamInput in, boolean keyed, 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:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
writeTo
public void writeTo(StreamOutput out) throws java.io.IOException
Description copied from interface:Writeable
Write this into the StreamOutput.
-
getKeyAsString
public java.lang.String getKeyAsString()
- Specified by:
getKeyAsString
in interfaceMultiBucketsAggregation.Bucket
- Returns:
- The key associated with the bucket as a string
-
getKey
public java.lang.Object getKey()
- Specified by:
getKey
in interfaceMultiBucketsAggregation.Bucket
- Returns:
- The key associated with the bucket
-
getDocCount
public long getDocCount()
- Specified by:
getDocCount
in interfaceMultiBucketsAggregation.Bucket
- Returns:
- The number of documents that fall within this bucket
-
getAggregations
public Aggregations getAggregations()
- Specified by:
getAggregations
in interfaceHasAggregations
- Specified by:
getAggregations
in interfaceMultiBucketsAggregation.Bucket
- Returns:
- The sub-aggregations of this bucket
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
compareKey
public int compareKey(InternalDateHistogram.Bucket other)
Description copied from interface:KeyComparable
Compare thisMultiBucketsAggregation.Bucket
skey
with another bucket.- Specified by:
compareKey
in interfaceKeyComparable<InternalDateHistogram.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()
-
getKeyed
public boolean getKeyed()
-
-