Class ParsedPercentilesBucket

java.lang.Object
All Implemented Interfaces:
java.lang.Iterable<Percentile>, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment, Aggregation, NumericMetricsAggregation, NumericMetricsAggregation.MultiValue, Percentiles

public class ParsedPercentilesBucket
extends ParsedPercentiles
implements Percentiles
  • Nested Class Summary

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

    Aggregation.CommonFields

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

    NumericMetricsAggregation.MultiValue, NumericMetricsAggregation.SingleValue

    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 class org.elasticsearch.search.aggregations.metrics.ParsedPercentiles

    percentiles, percentilesAsString

    Fields inherited from class org.elasticsearch.search.aggregations.ParsedAggregation

    metadata

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

    TYPED_KEYS_DELIMITER

    Fields inherited from interface org.elasticsearch.search.aggregations.metrics.Percentiles

    TYPE_NAME

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

    EMPTY_PARAMS
  • Constructor Summary

    Constructors
    Constructor Description
    ParsedPercentilesBucket()  
  • Method Summary

    Modifier and Type Method Description
    org.elasticsearch.common.xcontent.XContentBuilder doXContentBody​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  
    static ParsedPercentilesBucket fromXContent​(org.elasticsearch.common.xcontent.XContentParser parser, java.lang.String name)  
    java.lang.String getType()  
    double percentile​(double percent)
    Return the value associated with the provided percentile.
    java.lang.String percentileAsString​(double percent)
    Return the value associated with the provided percentile as a String.
    double value​(java.lang.String name)
    Return the result of 1 value by name
    java.lang.Iterable<java.lang.String> valueNames()
    Return an iterable over all value names this multi value aggregation provides.

    Methods inherited from class org.elasticsearch.search.aggregations.metrics.ParsedPercentiles

    declarePercentilesFields, getPercentile, getPercentileAsString, iterator

    Methods inherited from class org.elasticsearch.search.aggregations.ParsedAggregation

    declareAggregationFields, getMetadata, getName, parseDouble, setName, toXContent

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

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

    getMetadata, getName

    Methods inherited from interface java.lang.Iterable

    forEach, iterator, spliterator

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

    toXContent

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

    isFragment
  • Constructor Details

    • ParsedPercentilesBucket

      public ParsedPercentilesBucket()
  • Method Details

    • getType

      public java.lang.String getType()
      Specified by:
      getType in interface Aggregation
      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.
    • percentile

      public double percentile​(double percent) throws java.lang.IllegalArgumentException
      Description copied from interface: Percentiles
      Return the value associated with the provided percentile.
      Specified by:
      percentile in interface Percentiles
      Throws:
      java.lang.IllegalArgumentException
    • percentileAsString

      public java.lang.String percentileAsString​(double percent)
      Description copied from interface: Percentiles
      Return the value associated with the provided percentile as a String.
      Specified by:
      percentileAsString in interface Percentiles
    • value

      public double value​(java.lang.String name)
      Description copied from interface: NumericMetricsAggregation.MultiValue
      Return the result of 1 value by name
      Specified by:
      value in interface NumericMetricsAggregation.MultiValue
      Parameters:
      name - of the value
      Returns:
      the value
    • valueNames

      public java.lang.Iterable<java.lang.String> valueNames()
      Description copied from interface: NumericMetricsAggregation.MultiValue
      Return an iterable over all value names this multi value aggregation provides. The iterable might be created on the fly, if you need to call this multiple times, please cache the result in a variable on caller side..
      Specified by:
      valueNames in interface NumericMetricsAggregation.MultiValue
      Returns:
      iterable over all value names
    • doXContentBody

      public org.elasticsearch.common.xcontent.XContentBuilder doXContentBody​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Overrides:
      doXContentBody in class ParsedPercentiles
      Throws:
      java.io.IOException
    • fromXContent

      public static ParsedPercentilesBucket fromXContent​(org.elasticsearch.common.xcontent.XContentParser parser, java.lang.String name) throws java.io.IOException
      Throws:
      java.io.IOException