org.jclouds.cloudwatch.domain
Class StatisticValues

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

public class StatisticValues
extends Object

Author:
Jeremy Whitlock
See Also:

Nested Class Summary
static class StatisticValues.Builder
           
 
Constructor Summary
StatisticValues(double maximum, double minimum, double sampleCount, double sum)
           
 
Method Summary
static StatisticValues.Builder builder()
          Returns a new builder.
 double getMaximum()
          return the maximum value of the sample set
 double getMinimum()
          return the minimum value of the sample set
 double getSampleCount()
          return the number of samples used for the statistic set
 double getSum()
          return the sum of values for the sample set
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StatisticValues

public StatisticValues(double maximum,
                       double minimum,
                       double sampleCount,
                       double sum)
Method Detail

getMaximum

@Nullable
public double getMaximum()
return the maximum value of the sample set


getMinimum

@Nullable
public double getMinimum()
return the minimum value of the sample set


getSampleCount

@Nullable
public double getSampleCount()
return the number of samples used for the statistic set


getSum

@Nullable
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.



Copyright © 2009-2013 The Apache Software Foundation. All Rights Reserved.