Iterator<HistogramIterationValue>
public class PercentileIterator extends Object implements Iterator<HistogramIterationValue>
Constructor | Description |
---|---|
PercentileIterator(AbstractHistogram histogram,
int percentileTicksPerHalfDistance) |
Modifier and Type | Method | Description |
---|---|---|
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.
|
forEachRemaining, next, remove
public PercentileIterator(AbstractHistogram histogram, int percentileTicksPerHalfDistance)
histogram
- The histogram this iterator will operate onpercentileTicksPerHalfDistance
- The number of equal-sized iteration steps per half-distance to 100%.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>
Copyright © 2019. All rights reserved.