Class ParsedStats
java.lang.Object
org.elasticsearch.search.aggregations.ParsedAggregation
org.elasticsearch.search.aggregations.metrics.ParsedStats
- All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.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
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.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 class org.elasticsearch.search.aggregations.ParsedAggregation
metadataFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITERFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Constructor Summary
Constructors Constructor Description ParsedStats() -
Method Summary
Modifier and Type Method Description protected static voiddeclareStatsFields(org.elasticsearch.common.xcontent.ObjectParser<? extends ParsedStats,java.lang.Void> objectParser)protected org.elasticsearch.common.xcontent.XContentBuilderdoXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)static ParsedStatsfromXContent(org.elasticsearch.common.xcontent.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 org.elasticsearch.common.xcontent.XContentBuilderotherStatsToXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)doublevalue(java.lang.String name)Return the result of 1 value by namejava.lang.Iterable<java.lang.String>valueNames()Return an iterable over all value names this multi value aggregation provides.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, getNameMethods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContentMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Field Details
-
count
protected long count -
min
protected double min -
max
protected double max -
sum
protected double sum -
avg
protected double avg -
valueAsString
protected final java.util.Map<java.lang.String,java.lang.String> valueAsString
-
-
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.
-
value
public double value(java.lang.String name)Description copied from interface:NumericMetricsAggregation.MultiValueReturn the result of 1 value by name- Specified by:
valuein interfaceNumericMetricsAggregation.MultiValue- Parameters:
name- of the value- Returns:
- the value
-
valueNames
public java.lang.Iterable<java.lang.String> valueNames()Description copied from interface:NumericMetricsAggregation.MultiValueReturn 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:
valueNamesin interfaceNumericMetricsAggregation.MultiValue- Returns:
- iterable over all value names
-
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 org.elasticsearch.common.xcontent.XContentBuilder doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
doXContentBodyin classParsedAggregation- Throws:
java.io.IOException
-
declareStatsFields
protected static void declareStatsFields(org.elasticsearch.common.xcontent.ObjectParser<? extends ParsedStats,java.lang.Void> objectParser) -
fromXContent
public static ParsedStats fromXContent(org.elasticsearch.common.xcontent.XContentParser parser, java.lang.String name) -
otherStatsToXContent
protected org.elasticsearch.common.xcontent.XContentBuilder otherStatsToXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Throws:
java.io.IOException
-