Package org.HdrHistogram
Class DoubleLogarithmicIterator
java.lang.Object
org.HdrHistogram.DoubleLogarithmicIterator
- All Implemented Interfaces:
Iterator<DoubleHistogramIterationValue>
public class DoubleLogarithmicIterator
extends Object
implements Iterator<DoubleHistogramIterationValue>
Used for iterating through
DoubleHistogram values values in logarithmically increasing levels. The
iteration is performed in steps that start at valueUnitsInFirstBucket and increase exponentially according to
logBase, 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
ConstructorsConstructorDescriptionDoubleLogarithmicIterator(DoubleHistogram histogram, double valueUnitsInFirstBucket, double logBase) -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
DoubleLogarithmicIterator
public DoubleLogarithmicIterator(DoubleHistogram histogram, double valueUnitsInFirstBucket, double logBase) - Parameters:
histogram- The histogram this iterator will operate onvalueUnitsInFirstBucket- the size (in value units) of the first value bucket steplogBase- the multiplier by which the bucket size is expanded in each iteration step.
-
-
Method Details
-
reset
public void reset(double valueUnitsInFirstBucket, double logBase) Reset iterator for re-use in a fresh iteration over the same histogram data set.- Parameters:
valueUnitsInFirstBucket- the size (in value units) of the first value bucket steplogBase- the multiplier by which the bucket size is expanded in each iteration step.
-
hasNext
public boolean hasNext()- Specified by:
hasNextin interfaceIterator<DoubleHistogramIterationValue>
-
next
- Specified by:
nextin interfaceIterator<DoubleHistogramIterationValue>
-
remove
public void remove()- Specified by:
removein interfaceIterator<DoubleHistogramIterationValue>
-