Class ParsedStats
java.lang.Object
org.elasticsearch.search.aggregations.ParsedAggregation
org.elasticsearch.search.aggregations.metrics.ParsedStats
- All Implemented Interfaces:
ToXContent,ToXContentFragment,Aggregation,NumericMetricsAggregation,NumericMetricsAggregation.MultiValue,Stats
- Direct Known Subclasses:
ParsedExtendedStats,ParsedStatsBucket
public class ParsedStats extends ParsedAggregation implements Stats
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFieldsNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.metrics.NumericMetricsAggregation
NumericMetricsAggregation.MultiValue, NumericMetricsAggregation.SingleValueNested 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 longcountprotected doublemaxprotected doubleminprotected doublesumprotected java.util.Map<java.lang.String,java.lang.String>valueAsStringFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER -
Constructor Summary
Constructors Constructor Description ParsedStats() -
Method Summary
Modifier and Type Method Description protected static voiddeclareStatsFields(ObjectParser<? extends ParsedStats,java.lang.Void> objectParser)protected XContentBuilderdoXContentBody(XContentBuilder builder, ToXContent.Params params)static ParsedStatsfromXContent(XContentParser parser, java.lang.String name)doublegetAvg()java.lang.StringgetAvgAsString()longgetCount()doublegetMax()java.lang.StringgetMaxAsString()doublegetMin()java.lang.StringgetMinAsString()doublegetSum()java.lang.StringgetSumAsString()java.lang.StringgetType()protected XContentBuilderotherStatsToXContent(XContentBuilder builder, ToXContent.Params params)Methods inherited from class org.elasticsearch.search.aggregations.ParsedAggregation
declareAggregationFields, getMetaData, getName, parseDouble, setName, toXContentMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetaData, getName
-
Field Details
-
Constructor Details
-
ParsedStats
public ParsedStats()
-
-
Method Details
-
getCount
public long getCount() -
getMin
public double getMin() -
getMax
public double getMax() -
getAvg
public double getAvg() -
getSum
public double getSum() -
getMinAsString
public java.lang.String getMinAsString()- Specified by:
getMinAsStringin interfaceStats- Returns:
- The minimum value of all aggregated values as a String.
-
getMaxAsString
public java.lang.String getMaxAsString()- Specified by:
getMaxAsStringin interfaceStats- Returns:
- The maximum value of all aggregated values as a String.
-
getAvgAsString
public java.lang.String getAvgAsString()- Specified by:
getAvgAsStringin interfaceStats- Returns:
- The avg value over all aggregated values as a String.
-
getSumAsString
public java.lang.String getSumAsString()- Specified by:
getSumAsStringin interfaceStats- Returns:
- The sum of aggregated values as a String.
-
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.
-
doXContentBody
protected XContentBuilder doXContentBody(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
doXContentBodyin classParsedAggregation- Throws:
java.io.IOException
-
declareStatsFields
protected static void declareStatsFields(ObjectParser<? extends ParsedStats,java.lang.Void> objectParser) -
fromXContent
-
otherStatsToXContent
protected XContentBuilder otherStatsToXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Throws:
java.io.IOException
-