com.bea.wli.monitoring
Class StatisticValue.IntervalStatistic
java.lang.Object
   com.bea.wli.monitoring.StatisticValue
com.bea.wli.monitoring.StatisticValue
       com.bea.wli.monitoring.StatisticValue.CountStatistic
com.bea.wli.monitoring.StatisticValue.CountStatistic
           com.bea.wli.monitoring.StatisticValue.IntervalStatistic
com.bea.wli.monitoring.StatisticValue.IntervalStatistic
- All Implemented Interfaces: 
- Serializable
- Enclosing class:
- StatisticValue
- public static class StatisticValue.IntervalStatistic 
- extends StatisticValue.CountStatistic
Class to represent statistic value of type interval.
- See Also:
- Serialized Form
 
 
 
| Method Summary | 
|  long | getAverage()Gets statistics average value.
 | 
|  long | getMax()Gets statistics maximum value.
 | 
|  long | getMin()Gets statistics minimum value.
 | 
|  double | getSum()Gets statistics sum value.
 | 
 
 
 
 
StatisticValue.IntervalStatistic
public StatisticValue.IntervalStatistic(String name,
                                        long count,
                                        long min,
                                        long max,
                                        long average,
                                        double sum)
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.