|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.HdrHistogram.PercentileIterator
public class PercentileIterator
Used for iterating through histogram values according to percentile levels. The iteration is performed in steps that start at 0% and reduce their distance to 100% according to the percentileTicksPerHalfDistance parameter, ultimately reaching 100% when all recorded histogram values are exhausted.
| Constructor Summary | |
|---|---|
PercentileIterator(AbstractHistogram histogram,
int percentileTicksPerHalfDistance)
|
|
| 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(int percentileTicksPerHalfDistance)
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 PercentileIterator(AbstractHistogram histogram,
int percentileTicksPerHalfDistance)
histogram - The histogram this iterator will operate onpercentileTicksPerHalfDistance - The number of iteration steps per half-distance to 100%.| Method Detail |
|---|
public void reset(int percentileTicksPerHalfDistance)
percentileTicksPerHalfDistance - The number of iteration steps per half-distance to 100%.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 | ||||||||