Package com.bea.wli.monitoring
Class StatisticValue.IntervalStatistic
java.lang.Object
com.bea.wli.monitoring.StatisticValue
com.bea.wli.monitoring.StatisticValue.CountStatistic
com.bea.wli.monitoring.StatisticValue.IntervalStatistic
- All Implemented Interfaces:
Serializable
- Enclosing class:
- StatisticValue
Class to represent statistic value of type interval.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.bea.wli.monitoring.StatisticValue
StatisticValue.CountStatistic, StatisticValue.IntervalStatistic, StatisticValue.StatusStatistic
-
Constructor Summary
ConstructorsConstructorDescriptionIntervalStatistic
(String name, long count, long min, long max, long average, double sum) -
Method Summary
Methods inherited from class com.bea.wli.monitoring.StatisticValue.CountStatistic
getCount
Methods inherited from class com.bea.wli.monitoring.StatisticValue
getName, getType
-
Constructor Details
-
IntervalStatistic
-
-
Method Details
-
getMin
public long getMin()Gets statistics minimum value.- Returns:
- Minimum value.
-
getMax
public long getMax()Gets statistics maximum value.- Returns:
- Maximum value.
-
getAverage
public long getAverage()Gets statistics average value.- Returns:
- Average value.
-
getSum
public double getSum()Gets statistics sum value.- Returns:
- Sum value.
-