Class ParsedHDRPercentiles
- java.lang.Object
-
- org.elasticsearch.search.aggregations.ParsedAggregation
-
- org.elasticsearch.search.aggregations.metrics.percentiles.ParsedPercentiles
-
- org.elasticsearch.search.aggregations.metrics.percentiles.hdr.ParsedHDRPercentiles
-
- All Implemented Interfaces:
java.lang.Iterable<Percentile>,ToXContent,ToXContentFragment,Aggregation,NumericMetricsAggregation,NumericMetricsAggregation.MultiValue,Percentiles
public class ParsedHDRPercentiles 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
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.search.aggregations.metrics.percentiles.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.Percentiles
TYPE_NAME
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description ParsedHDRPercentiles()
-
Method Summary
Modifier and Type Method Description static ParsedHDRPercentilesfromXContent(XContentParser parser, java.lang.String name)java.lang.StringgetType()doublepercentile(double percent)Return the value associated with the provided percentile.java.lang.StringpercentileAsString(double percent)Return the value associated with the provided percentile as a String.-
Methods inherited from class org.elasticsearch.search.aggregations.metrics.percentiles.ParsedPercentiles
declarePercentilesFields, doXContentBody, 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 org.elasticsearch.common.xcontent.ToXContent
toXContent
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Method Detail
-
getType
public java.lang.String getType()
- Specified by:
getTypein interfaceAggregation- 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)
Description copied from interface:PercentilesReturn the value associated with the provided percentile.- Specified by:
percentilein interfacePercentiles
-
percentileAsString
public java.lang.String percentileAsString(double percent)
Description copied from interface:PercentilesReturn the value associated with the provided percentile as a String.- Specified by:
percentileAsStringin interfacePercentiles
-
fromXContent
public static ParsedHDRPercentiles fromXContent(XContentParser parser, java.lang.String name) throws java.io.IOException
- Throws:
java.io.IOException
-
-