Package org.HdrHistogram
Class DoubleLinearIterator
- java.lang.Object
-
- org.HdrHistogram.DoubleLinearIterator
-
- All Implemented Interfaces:
java.util.Iterator<DoubleHistogramIterationValue>
public class DoubleLinearIterator extends java.lang.Object implements java.util.Iterator<DoubleHistogramIterationValue>
Used for iterating throughDoubleHistogramvalues 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
Fields Modifier and Type Field Description (package private) DoubleHistogramhistogramprivate LinearIteratorintegerLinearIteratorprivate DoubleHistogramIterationValueiterationValue
-
Constructor Summary
Constructors Constructor Description DoubleLinearIterator(DoubleHistogram histogram, double valueUnitsPerBucket)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()DoubleHistogramIterationValuenext()voidremove()voidreset(double valueUnitsPerBucket)Reset iterator for re-use in a fresh iteration over the same histogram data set.
-
-
-
Field Detail
-
integerLinearIterator
private final LinearIterator integerLinearIterator
-
iterationValue
private final DoubleHistogramIterationValue iterationValue
-
histogram
DoubleHistogram histogram
-
-
Constructor Detail
-
DoubleLinearIterator
public DoubleLinearIterator(DoubleHistogram histogram, double valueUnitsPerBucket)
- Parameters:
histogram- The histogram this iterator will operate onvalueUnitsPerBucket- The size (in value units) of each bucket iteration.
-
-
Method Detail
-
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 interfacejava.util.Iterator<DoubleHistogramIterationValue>
-
next
public DoubleHistogramIterationValue next()
- Specified by:
nextin interfacejava.util.Iterator<DoubleHistogramIterationValue>
-
remove
public void remove()
- Specified by:
removein interfacejava.util.Iterator<DoubleHistogramIterationValue>
-
-