All Superinterfaces:
Aggregation, MultiBucketsAggregation, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment
All Known Implementing Classes:
InternalBinaryRange, InternalDateRange, InternalGeoDistance, InternalRange, ParsedBinaryRange, ParsedDateRange, ParsedGeoDistance, ParsedRange

public interface Range
extends MultiBucketsAggregation
A range aggregation. Defines multiple buckets, each associated with a pre-defined value range of a field, and where the value of that fields in all documents in each bucket fall in the bucket's range.
  • Nested Class Summary

    Nested Classes
    Modifier and Type Interface Description
    static interface  Range.Bucket
    A bucket associated with a specific range

    Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation

    Aggregation.CommonFields

    Nested 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.Params
  • Field Summary

    Fields inherited from interface org.elasticsearch.search.aggregations.Aggregation

    TYPED_KEYS_DELIMITER

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS
  • Method Summary

    Modifier and Type Method Description
    java.util.List<? extends Range.Bucket> getBuckets()
    Return the buckets of this range aggregation.

    Methods inherited from interface org.elasticsearch.search.aggregations.Aggregation

    getMetadata, getName, getType

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent

    toXContent

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment

    isFragment
  • Method Details