com.ibm.websphere.pmi.stat
Class TimeStatisticImpl
- java.lang.Object
com.ibm.websphere.pmi.stat.StatisticImpl
com.ibm.websphere.pmi.stat.TimeStatisticImpl
All implemented interfaces:
Statistic, TimeStatistic, java.io.Serializable
Deprecated. As of 6.0, replaced with
WSTimeStatistic
- public class TimeStatisticImpl
- extends StatisticImpl
- implements TimeStatistic
See Also:
Field Summary
Modifier and Type | Field and Description |
---|---|
|
count
Deprecated.
|
|
max
Deprecated.
|
|
min
Deprecated.
|
|
sumOfSquares
Deprecated.
|
|
total
Deprecated.
|
Constructor Summary
Constructor and Description |
---|
TimeStatisticImpl(int dataId)
Deprecated.
|
TimeStatisticImpl(int count,int min,int max,int total,int sumOfSquares,int startTime,int lastSampleTime)
Deprecated.
|
TimeStatisticImpl(int dataId,long count,long min,long max,long total,long sumOfSquares,long startTime,long lastSampleTime)
Deprecated.
|
TimeStatisticImpl(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 |
---|---|
|
add(long val)
Deprecated.
|
|
combine(Statistic otherStat)
Deprecated. Aggregate the value of parameter data to this data
|
delta(Statistic otherStat)
Deprecated.
|
|
|
getCount()
Deprecated.
|
|
getMax()
Deprecated.
|
|
getMaxTime()
Deprecated.
|
|
getMean()
Deprecated.
|
|
getMin()
Deprecated.
|
|
getMinTime()
Deprecated.
|
|
getSumOfSquares()
Deprecated.
|
|
getTotal()
Deprecated.
|
|
getTotalTime()
Deprecated.
|
|
reset()
Deprecated. Reset the createTime
|
|
reset(boolean resetAll)
Deprecated.
|
|
resetOnClient(Statistic other)
Deprecated. Reset the data value to zero on client side.
|
|
set(long count,long min,long max,long total,long sumOfSquares,long startTime,long lastSampleTime)
Deprecated.
|
|
setDataId(int id)
Deprecated.
|
|
toString()
Deprecated.
|
|
toString(java.lang.String indent)
Deprecated.
|
|
update(Statistic otherStat)
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, setDataInfo, setDataInfo, setLastSampleTime, setStartTime, 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
count
- protected long count
Deprecated.
min
- protected long min
Deprecated.
max
- protected long max
Deprecated.
total
- protected long total
Deprecated.
sumOfSquares
- protected long sumOfSquares
Deprecated.
Constructor Detail
TimeStatisticImpl
- public TimeStatisticImpl(int dataId)
Deprecated.
TimeStatisticImpl
- public TimeStatisticImpl(int count,
- int min,
- int max,
- int total,
- int sumOfSquares,
- int startTime,
- int lastSampleTime)
Deprecated.
TimeStatisticImpl
- public TimeStatisticImpl(int dataId,
- long count,
- long min,
- long max,
- long total,
- long sumOfSquares,
- long startTime,
- long lastSampleTime)
Deprecated.
TimeStatisticImpl
- public TimeStatisticImpl(int id,
- java.lang.String name,
- java.lang.String unit,
- java.lang.String description,
- long startTime,
- long lastSampleTime)
Deprecated.
Method Detail
setDataId
- public void setDataId(int id)
Deprecated.
add
- public void add(long val)
Deprecated.
set
- public void set(long count,
- long min,
- long max,
- long total,
- long sumOfSquares,
- long startTime,
- long lastSampleTime)
Deprecated.
reset
- public void reset()
Deprecated.
Reset the createTime
Overrides:
reset
in class StatisticImpl
reset
- public void reset(boolean resetAll)
Deprecated.
getCount
- public long getCount()
Deprecated.
Specified by:
getCount
in interface TimeStatistic
getTotal
- public long getTotal()
Deprecated.
getMean
- public double getMean()
Deprecated.
getMin
- public long getMin()
Deprecated.
getMax
- public long getMax()
Deprecated.
getTotalTime
- public long getTotalTime()
Deprecated.
Specified by:
getTotalTime
in interface TimeStatistic
getMinTime
- public long getMinTime()
Deprecated.
Specified by:
getMinTime
in interface TimeStatistic
getMaxTime
- public long getMaxTime()
Deprecated.
Specified by:
getMaxTime
in interface TimeStatistic
getSumOfSquares
- public long getSumOfSquares()
Deprecated.
combine
- public void combine(Statistic otherStat)
Deprecated.
Description copied from class:
StatisticImpl
Aggregate the value of parameter data to this data
Specified by:
combine
in class StatisticImpl
Parameters:
otherStat
- must have the same data ID and type toString
- public java.lang.String toString( )
Deprecated.
Overrides:
toString
in class StatisticImpl
toString
- public java.lang.String toString( java.lang.String indent)
Deprecated.
Overrides:
toString
in class StatisticImpl
update
- public void update(Statistic otherStat)
Deprecated.
Description copied from class:
StatisticImpl
Update itself with the new value in data.
Specified by:
update
in class StatisticImpl
Parameters:
otherStat
- must have the same data ID and type delta
Deprecated.
Specified by:
delta
in class StatisticImpl
Parameters:
otherStat
- must have the same data ID and type Returns:
an Statistic object whose value is the difference of (this - data)
resetOnClient
- public void resetOnClient(Statistic other)
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:
resetOnClient
in class StatisticImpl
Parameters:
other
- must have the same data ID and type
StatisticImpl