Package org.jclouds.cloudwatch.domain
Class StatisticValues
java.lang.Object
org.jclouds.cloudwatch.domain.StatisticValues
- See Also:
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionStatisticValues
(double maximum, double minimum, double sampleCount, double sum) -
Method Summary
Modifier and TypeMethodDescriptionstatic StatisticValues.Builder
builder()
Returns a new builder.double
return the maximum value of the sample setdouble
return the minimum value of the sample setdouble
return the number of samples used for the statistic setdouble
getSum()
return the sum of values for the sample set
-
Constructor Details
-
StatisticValues
public StatisticValues(double maximum, double minimum, double sampleCount, double sum)
-
-
Method Details
-
getMaximum
public double getMaximum()return the maximum value of the sample set -
getMinimum
public double getMinimum()return the minimum value of the sample set -
getSampleCount
public double getSampleCount()return the number of samples used for the statistic set -
getSum
public double getSum()return the sum of values for the sample set -
builder
Returns a new builder. The generated builder is equivalent to the builder created by theStatisticValues.Builder
constructor.
-