Class StatisticValue

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

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 3. StatusStatistic 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 or status 3. values - Values for each statistic type. These are implemented as derived classes.
See Also:
  • Method Details

    • getName

      public String getName()
      Gets statistics name.
      Returns:
      Statistics name.
    • getType

      public StatisticType getType()
      Gets statistics type.
      Returns:
      Statistics type.