com.bea.wli.monitoring
Class StatisticValue

java.lang.Object
  extended by com.bea.wli.monitoring.StatisticValue
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
StatisticValue.CountStatistic

public abstract class StatisticValue
extends Object
implements Serializable

This class will hold a statistic value for a resource. The statistics that are supported by the monitoring system are: 1. CountStatistic 2. IntervalStatistic This class holds an instance of a statistic value. The values that are reported for a statistics are: 1. name – Name of the statistics 2. type - Type of the statistics i.e. whether count or interval 3. values - Values for each statistic type. These are implemented as derived classes.

See Also:
Serialized Form

Nested Class Summary
static class StatisticValue.CountStatistic
          Class to represent statistic value of type count.
static class StatisticValue.IntervalStatistic
          Class to represent statistic value of type interval.
 
Method Summary
 String getName()
          Gets statistics name.
 StatisticType getType()
          Gets statistics type.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getName

public String getName()
Gets statistics name.

Returns:
Statistics name.

getType

public StatisticType getType()
Gets statistics type.

Returns:
Statistics type.