com.bea.wli.monitoring
Class StatisticValue.IntervalStatistic

java.lang.Object
  extended by com.bea.wli.monitoring.StatisticValue
      extended by com.bea.wli.monitoring.StatisticValue.CountStatistic
          extended by 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

Nested Class Summary
 
Nested classes/interfaces inherited from class com.bea.wli.monitoring.StatisticValue
StatisticValue.CountStatistic, StatisticValue.IntervalStatistic
 
Constructor Summary
StatisticValue.IntervalStatistic(String name, long count, long min, long max, long average, double sum)
           
 
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.
 
Methods inherited from class com.bea.wli.monitoring.StatisticValue.CountStatistic
getCount
 
Methods inherited from class com.bea.wli.monitoring.StatisticValue
getName, getType
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StatisticValue.IntervalStatistic

public StatisticValue.IntervalStatistic(String name,
                                        long count,
                                        long min,
                                        long max,
                                        long average,
                                        double sum)
Method Detail

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.