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 class
StatisticValues.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.Builder
builder()
Returns a new builder.double
getMaximum()
return the maximum value of the sample setdouble
getMinimum()
return the minimum value of the sample setdouble
getSampleCount()
return the number of samples used for the statistic setdouble
getSum()
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.Builder
constructor.
-
-