Class ParsedExtendedStats
- java.lang.Object
-
- org.elasticsearch.search.aggregations.ParsedAggregation
-
- org.elasticsearch.search.aggregations.metrics.ParsedStats
-
- org.elasticsearch.search.aggregations.metrics.ParsedExtendedStats
-
- All Implemented Interfaces:
ToXContent,ToXContentFragment,Aggregation,ExtendedStats,NumericMetricsAggregation,NumericMetricsAggregation.MultiValue,Stats
- Direct Known Subclasses:
ParsedExtendedStatsBucket
public class ParsedExtendedStats extends ParsedStats implements ExtendedStats
-
-
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.ExtendedStats
ExtendedStats.Bounds
-
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 Modifier and Type Field Description protected doubleavgprotected doublestdDeviationprotected doublestdDeviationBoundLowerprotected doublestdDeviationBoundUpperprotected doublesumprotected doublesumOfSquaresprotected doublevariance-
Fields inherited from class org.elasticsearch.search.aggregations.metrics.ParsedStats
count, max, min, valueAsString
-
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.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description ParsedExtendedStats()
-
Method Summary
Modifier and Type Method Description protected static voiddeclareExtendedStatsFields(ObjectParser<? extends ParsedExtendedStats,java.lang.Void> objectParser)static ParsedExtendedStatsfromXContent(XContentParser parser, java.lang.String name)doublegetStdDeviation()The standard deviation of the collected values.java.lang.StringgetStdDeviationAsString()The standard deviation of the collected values as a String.doublegetStdDeviationBound(ExtendedStats.Bounds bound)The upper or lower bounds of the stdDeviationjava.lang.StringgetStdDeviationBoundAsString(ExtendedStats.Bounds bound)The upper or lower bounds of stdDev of the collected values as a String.doublegetSumOfSquares()The sum of the squares of the collected values.java.lang.StringgetSumOfSquaresAsString()The sum of the squares of the collected values as a String.java.lang.StringgetType()doublegetVariance()The variance of the collected values.java.lang.StringgetVarianceAsString()The variance of the collected values as a String.protected XContentBuilderotherStatsToXContent(XContentBuilder builder, ToXContent.Params params)-
Methods inherited from class org.elasticsearch.search.aggregations.metrics.ParsedStats
declareStatsFields, doXContentBody, getAvg, getAvgAsString, getCount, getMax, getMaxAsString, getMin, getMinAsString, getSum, getSumAsString
-
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.search.aggregations.metrics.Stats
getAvg, getAvgAsString, getCount, getMax, getMaxAsString, getMin, getMinAsString, getSum, getSumAsString
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Field Detail
-
sumOfSquares
protected double sumOfSquares
-
variance
protected double variance
-
stdDeviation
protected double stdDeviation
-
stdDeviationBoundUpper
protected double stdDeviationBoundUpper
-
stdDeviationBoundLower
protected double stdDeviationBoundLower
-
sum
protected double sum
-
avg
protected double avg
-
-
Method Detail
-
getType
public java.lang.String getType()
- Specified by:
getTypein interfaceAggregation- Overrides:
getTypein classParsedStats- 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.
-
getSumOfSquares
public double getSumOfSquares()
Description copied from interface:ExtendedStatsThe sum of the squares of the collected values.- Specified by:
getSumOfSquaresin interfaceExtendedStats
-
getVariance
public double getVariance()
Description copied from interface:ExtendedStatsThe variance of the collected values.- Specified by:
getVariancein interfaceExtendedStats
-
getStdDeviation
public double getStdDeviation()
Description copied from interface:ExtendedStatsThe standard deviation of the collected values.- Specified by:
getStdDeviationin interfaceExtendedStats
-
getStdDeviationBound
public double getStdDeviationBound(ExtendedStats.Bounds bound)
Description copied from interface:ExtendedStatsThe upper or lower bounds of the stdDeviation- Specified by:
getStdDeviationBoundin interfaceExtendedStats
-
getStdDeviationAsString
public java.lang.String getStdDeviationAsString()
Description copied from interface:ExtendedStatsThe standard deviation of the collected values as a String.- Specified by:
getStdDeviationAsStringin interfaceExtendedStats
-
getStdDeviationBoundAsString
public java.lang.String getStdDeviationBoundAsString(ExtendedStats.Bounds bound)
Description copied from interface:ExtendedStatsThe upper or lower bounds of stdDev of the collected values as a String.- Specified by:
getStdDeviationBoundAsStringin interfaceExtendedStats
-
getSumOfSquaresAsString
public java.lang.String getSumOfSquaresAsString()
Description copied from interface:ExtendedStatsThe sum of the squares of the collected values as a String.- Specified by:
getSumOfSquaresAsStringin interfaceExtendedStats
-
getVarianceAsString
public java.lang.String getVarianceAsString()
Description copied from interface:ExtendedStatsThe variance of the collected values as a String.- Specified by:
getVarianceAsStringin interfaceExtendedStats
-
otherStatsToXContent
protected XContentBuilder otherStatsToXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Overrides:
otherStatsToXContentin classParsedStats- Throws:
java.io.IOException
-
declareExtendedStatsFields
protected static void declareExtendedStatsFields(ObjectParser<? extends ParsedExtendedStats,java.lang.Void> objectParser)
-
fromXContent
public static ParsedExtendedStats fromXContent(XContentParser parser, java.lang.String name)
-
-