Class StatisticValues

java.lang.Object
org.jclouds.cloudwatch.domain.StatisticValues

public class StatisticValues extends Object
See Also:
  • 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

      public static StatisticValues.Builder builder()
      Returns a new builder. The generated builder is equivalent to the builder created by the StatisticValues.Builder constructor.