Package org.jclouds.cloudwatch.domain
Class StatisticValues
- java.lang.Object
-
- org.jclouds.cloudwatch.domain.StatisticValues
-
public class StatisticValues extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStatisticValues.Builder
-
Constructor Summary
Constructors Constructor Description StatisticValues(double maximum, double minimum, double sampleCount, double sum)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StatisticValues.Builderbuilder()Returns a new builder.doublegetMaximum()return the maximum value of the sample setdoublegetMinimum()return the minimum value of the sample setdoublegetSampleCount()return the number of samples used for the statistic setdoublegetSum()return the sum of values for the sample set
-
-
-
Method Detail
-
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
public static StatisticValues.Builder builder()
Returns a new builder. The generated builder is equivalent to the builder created by theStatisticValues.Builderconstructor.
-
-