Class ParsedTDigestPercentileRanks
java.lang.Object
org.elasticsearch.search.aggregations.ParsedAggregation
org.elasticsearch.search.aggregations.metrics.ParsedPercentiles
org.elasticsearch.search.aggregations.metrics.ParsedTDigestPercentileRanks
- All Implemented Interfaces:
Iterable<Percentile>
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentFragment
,Aggregation
,NumericMetricsAggregation
,NumericMetricsAggregation.MultiValue
,PercentileRanks
-
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.PercentileRanks
TYPE_NAME
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ParsedTDigestPercentileRanks
fromXContent(org.elasticsearch.common.xcontent.XContentParser parser, String name)
getType()
iterator()
double
percent(double value)
Return the percentile for the given value.percentAsString(double value)
Return the percentile for the given value as a String.double
Return the result of 1 value by nameReturn an iterable over all value names this multi value aggregation provides.Methods inherited from class org.elasticsearch.search.aggregations.metrics.ParsedPercentiles
declarePercentilesFields, doXContentBody, getPercentile, getPercentileAsString
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, spliterator
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
ParsedTDigestPercentileRanks
public ParsedTDigestPercentileRanks()
-
-
Method Details
-
getType
- 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.
-
iterator
- Specified by:
iterator
in interfaceIterable<Percentile>
- Overrides:
iterator
in classParsedPercentiles
-
fromXContent
public static ParsedTDigestPercentileRanks fromXContent(org.elasticsearch.common.xcontent.XContentParser parser, String name) throws IOException- Throws:
IOException
-
percent
public double percent(double value)Description copied from interface:PercentileRanks
Return the percentile for the given value.- Specified by:
percent
in interfacePercentileRanks
-
percentAsString
Description copied from interface:PercentileRanks
Return the percentile for the given value as a String.- Specified by:
percentAsString
in interfacePercentileRanks
-
value
Description copied from interface:NumericMetricsAggregation.MultiValue
Return the result of 1 value by name- Specified by:
value
in interfaceNumericMetricsAggregation.MultiValue
- Parameters:
name
- of the value- Returns:
- the value
-
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 interfaceNumericMetricsAggregation.MultiValue
- Returns:
- iterable over all value names
-