Class ParsedPercentilesBucket
java.lang.Object
org.elasticsearch.search.aggregations.ParsedAggregation
org.elasticsearch.search.aggregations.metrics.ParsedPercentiles
org.elasticsearch.search.aggregations.pipeline.ParsedPercentilesBucket
- All Implemented Interfaces:
Iterable<Percentile>
,Aggregation
,NumericMetricsAggregation
,NumericMetricsAggregation.MultiValue
,Percentiles
,ToXContent
,ToXContentFragment
-
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.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, 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.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondoXContentBody
(XContentBuilder builder, ToXContent.Params params) static ParsedPercentilesBucket
fromXContent
(XContentParser parser, String name) getType()
double
percentile
(double percent) Return the value associated with the provided percentile.percentileAsString
(double percent) Return the value associated with the provided percentile 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, 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.xcontent.ToXContent
toXContent
Methods inherited from interface org.elasticsearch.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
ParsedPercentilesBucket
public ParsedPercentilesBucket()
-
-
Method Details
-
getType
- Specified by:
getType
in 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
Description copied from interface:Percentiles
Return the value associated with the provided percentile.- Specified by:
percentile
in interfacePercentiles
- Throws:
IllegalArgumentException
-
percentileAsString
Description copied from interface:Percentiles
Return the value associated with the provided percentile as a String.- Specified by:
percentileAsString
in interfacePercentiles
-
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
-
doXContentBody
public XContentBuilder doXContentBody(XContentBuilder builder, ToXContent.Params params) throws IOException - Overrides:
doXContentBody
in classParsedPercentiles
- Throws:
IOException
-
fromXContent
public static ParsedPercentilesBucket fromXContent(XContentParser parser, String name) throws IOException - Throws:
IOException
-