|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.HdrHistogram.LinearIterator
public class LinearIterator
Used for iterating through histogram values in linear steps. The iteration is performed in steps of valueUnitsPerBucket in size, terminating when all recorded histogram values are exhausted. Note that each iteration "bucket" includes values up to and including the next bucket boundary value.
| Constructor Summary | |
|---|---|
LinearIterator(AbstractHistogram histogram,
long valueUnitsPerBucket)
|
|
| Method Summary | |
|---|---|
boolean |
hasNext()
Returns true if the iteration has more elements. |
HistogramIterationValue |
next()
Returns the next element in the iteration. |
void |
remove()
Not supported. |
void |
reset(long valueUnitsPerBucket)
Reset iterator for re-use in a fresh iteration over the same histogram data set. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface java.util.Iterator |
|---|
next, remove |
| Constructor Detail |
|---|
public LinearIterator(AbstractHistogram histogram,
long valueUnitsPerBucket)
histogram - The histogram this iterator will operate onvalueUnitsPerBucket - The size (in value units) of each bucket iteration.| Method Detail |
|---|
public void reset(long valueUnitsPerBucket)
valueUnitsPerBucket - The size (in value units) of each bucket iteration.public boolean hasNext()
hasNext in interface Iterator<HistogramIterationValue>public HistogramIterationValue next()
next in interface Iterator<HistogramIterationValue>HistogramIterationValue associated with the next element in the iteration.public void remove()
UnsupportedOperationException.
remove in interface Iterator<HistogramIterationValue>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||