Package org.jclouds.cloudwatch.domain
Class Datapoint
- java.lang.Object
-
- org.jclouds.cloudwatch.domain.Datapoint
-
public class Datapoint extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Double
getAverage()
return Average of samples for the datapoint.String
getCustomUnit()
return CustomUnit defined for the datapoint.Double
getMaximum()
return Maximum of the samples used for the datapoint.Double
getMinimum()
return Minimum of samples for the datapoint.Double
getSamples()
return The number of Measurements that contributed to the aggregate value of this datapoint.Double
getSum()
return Sum of samples for the datapoint.Date
getTimestamp()
return Indicates the beginning of the time aggregation for this value and samples.Unit
getUnit()
return Standard unit used for the datapoint.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getMaximum
@Nullable public Double getMaximum()
return Maximum of the samples used for the datapoint.
-
getTimestamp
@Nullable public Date getTimestamp()
return Indicates the beginning of the time aggregation for this value and samples.
-
getSamples
@Nullable public Double getSamples()
return The number of Measurements that contributed to the aggregate value of this datapoint.
-
-