Adds the entries of another Stats object to this one.
Parameters: anotherStat - stat to merge with current stat throws: Exception - if you try to merge a stat with itself
Displays the statistics information on a single line in the format: name
count error cacheHit %hit minTime maxTime avgTime totalTime
a String containing the Stat output
Get the stat information in the form of a String table. Format is: name
count error cacheHit %hit minTime maxTime avgTime totalTime
the String table corresponding to this stat
updateTime
public synchronized void updateTime(long time)(Code)
Adds a new time sample for this entry. time is added to
total time and both minTime and maxTime are updated if needed.
Parameters: time - time to add to this entry