Package org.HdrHistogram
Class DoubleLinearIterator
java.lang.Object
org.HdrHistogram.DoubleLinearIterator
- All Implemented Interfaces:
Iterator<DoubleHistogramIterationValue>
Used for iterating through
DoubleHistogram 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.-
Field Summary
FieldsModifier and TypeFieldDescription(package private) DoubleHistogramprivate final LinearIteratorprivate final DoubleHistogramIterationValue -
Constructor Summary
Constructors -
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
-
Field Details
-
integerLinearIterator
-
iterationValue
-
histogram
DoubleHistogram histogram
-
-
Constructor Details
-
DoubleLinearIterator
- Parameters:
histogram- The histogram this iterator will operate onvalueUnitsPerBucket- The size (in value units) of each bucket iteration.
-
-
Method Details
-
reset
public void reset(double valueUnitsPerBucket) Reset iterator for re-use in a fresh iteration over the same histogram data set.- Parameters:
valueUnitsPerBucket- The size (in value units) of each bucket iteration.
-
hasNext
public boolean hasNext()- Specified by:
hasNextin interfaceIterator<DoubleHistogramIterationValue>
-
next
- Specified by:
nextin interfaceIterator<DoubleHistogramIterationValue>
-
remove
public void remove()- Specified by:
removein interfaceIterator<DoubleHistogramIterationValue>
-