public class StatisticValues extends Object
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
StatisticValues.Builder  | 
| Constructor and Description | 
|---|
StatisticValues(double maximum,
               double minimum,
               double sampleCount,
               double sum)  | 
| Modifier and Type | Method and Description | 
|---|---|
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 
 | 
public StatisticValues(double maximum,
               double minimum,
               double sampleCount,
               double sum)
@Nullable public double getMaximum()
@Nullable public double getMinimum()
@Nullable public double getSampleCount()
@Nullable public double getSum()
public static StatisticValues.Builder builder()
StatisticValues.Builder constructor.Copyright © 2009-2013 jclouds. All Rights Reserved.