com.ibm.websphere.pmi.stat

Class BoundaryStatisticImpl

  1. java.lang.Object
  2. extended bycom.ibm.websphere.pmi.stat.StatisticImpl
  3. extended bycom.ibm.websphere.pmi.stat.BoundaryStatisticImpl
All implemented interfaces:
BoundaryStatistic, Statistic, java.io.Serializable

Deprecated. As of 6.0, replaced with WSBoundaryStatistic
  1. public class BoundaryStatisticImpl
  2. extends StatisticImpl
  3. implements BoundaryStatistic
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. protected
  2. long
lowerBound
Deprecated.
  1. protected
  2. long
upperBound
Deprecated.

Constructor Summary

Constructor and Description
BoundaryStatisticImpl(int dataId)
Deprecated.
BoundaryStatisticImpl(int id,java.lang.String name,java.lang.String unit,java.lang.String description,long startTime,long lastSampleTime)
Deprecated.

Method Summary

Modifier and Type Method and Description
  1. void
combine(Statistic other)
Deprecated. Aggregate the value of parameter data to this data
  1. Statistic
delta(Statistic data)
Deprecated.
  1. long
getLowerBound()
Deprecated.
  1. long
getUpperBound()
Deprecated.
  1. void
resetOnClient(Statistic data)
Deprecated. Reset the data value to zero on client side.
  1. void
set(long lowerBound,long upperBound,long startTime,long lastSampleTime)
Deprecated.
  1. void
setLowerBound(long val)
Deprecated.
  1. void
setUpperBound(long val)
Deprecated.
  1. void
update(Statistic data)
Deprecated. Update itself with the new value in data.
Methods inherited from class com.ibm.websphere.pmi.stat.StatisticImpl
disable, enable, getDataInfo, getDescription, getId, getLastSampleTime, getName, getStartTime, getUnit, isEnabled, reset, setDataInfo, setDataInfo, setLastSampleTime, setStartTime, toString, toString, toXML
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.ibm.websphere.management.statistics.Statistic
getDescription, getLastSampleTime, getName, getStartTime, getUnit

Field Detail

upperBound

  1. protected long upperBound
Deprecated.

lowerBound

  1. protected long lowerBound
Deprecated.

Constructor Detail

BoundaryStatisticImpl

  1. public BoundaryStatisticImpl(int dataId)
Deprecated.

BoundaryStatisticImpl

  1. public BoundaryStatisticImpl(int id,
  2. java.lang.String name,
  3. java.lang.String unit,
  4. java.lang.String description,
  5. long startTime,
  6. long lastSampleTime)
Deprecated.

Method Detail

set

  1. public void set(long lowerBound,
  2. long upperBound,
  3. long startTime,
  4. long lastSampleTime)
Deprecated.

setLowerBound

  1. public void setLowerBound(long val)
Deprecated.

setUpperBound

  1. public void setUpperBound(long val)
Deprecated.

getLowerBound

  1. public long getLowerBound()
Deprecated.
Specified by:

getUpperBound

  1. public long getUpperBound()
Deprecated.
Specified by:

combine

  1. public void combine(Statistic other)
Deprecated.
Description copied from class: StatisticImpl
Aggregate the value of parameter data to this data
Specified by:
Parameters:
other - must have the same data ID and type

update

  1. public void update(Statistic data)
Deprecated.
Description copied from class: StatisticImpl
Update itself with the new value in data.
Specified by:
Parameters:
data - must have the same data ID and type

delta

  1. public Statistic delta(Statistic data)
Deprecated.
Specified by:
delta in class StatisticImpl
Parameters:
data - must have the same data ID and type
Returns:
an Statistic object whose value is the difference of (this - data)

resetOnClient

  1. public void resetOnClient(Statistic data)
Deprecated.
Description copied from class: StatisticImpl
Reset the data value to zero on client side. When using update method, the value will always be the value since the last reset is called.
Specified by:
Parameters:
data - must have the same data ID and type