public class StatisticSet
extends java.lang.Object
implements java.io.Serializable
The StatisticSet data type describes the StatisticValues component of MetricDatum, and represents a set of statistics that
describes a specific metric.
| コンストラクタと説明 |
|---|
StatisticSet() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Double |
getMaximum()
The maximum value of the sample set.
|
java.lang.Double |
getMinimum()
The minimum value of the sample set.
|
java.lang.Double |
getSampleCount()
The number of samples used for the statistic set.
|
java.lang.Double |
getSum()
The sum of values for the sample set.
|
int |
hashCode() |
void |
setMaximum(java.lang.Double maximum)
The maximum value of the sample set.
|
void |
setMinimum(java.lang.Double minimum)
The minimum value of the sample set.
|
void |
setSampleCount(java.lang.Double sampleCount)
The number of samples used for the statistic set.
|
void |
setSum(java.lang.Double sum)
The sum of values for the sample set.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
StatisticSet |
withMaximum(java.lang.Double maximum)
The maximum value of the sample set.
|
StatisticSet |
withMinimum(java.lang.Double minimum)
The minimum value of the sample set.
|
StatisticSet |
withSampleCount(java.lang.Double sampleCount)
The number of samples used for the statistic set.
|
StatisticSet |
withSum(java.lang.Double sum)
The sum of values for the sample set.
|
public java.lang.Double getSampleCount()
public void setSampleCount(java.lang.Double sampleCount)
sampleCount - The number of samples used for the statistic set.public StatisticSet withSampleCount(java.lang.Double sampleCount)
Returns a reference to this object so that method calls can be chained together.
sampleCount - The number of samples used for the statistic set.public java.lang.Double getSum()
public void setSum(java.lang.Double sum)
sum - The sum of values for the sample set.public StatisticSet withSum(java.lang.Double sum)
Returns a reference to this object so that method calls can be chained together.
sum - The sum of values for the sample set.public java.lang.Double getMinimum()
public void setMinimum(java.lang.Double minimum)
minimum - The minimum value of the sample set.public StatisticSet withMinimum(java.lang.Double minimum)
Returns a reference to this object so that method calls can be chained together.
minimum - The minimum value of the sample set.public java.lang.Double getMaximum()
public void setMaximum(java.lang.Double maximum)
maximum - The maximum value of the sample set.public StatisticSet withMaximum(java.lang.Double maximum)
Returns a reference to this object so that method calls can be chained together.
maximum - The maximum value of the sample set.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object