org.HdrHistogram
Class DoubleLinearIterator

java.lang.Object
  extended by org.HdrHistogram.DoubleLinearIterator
All Implemented Interfaces:
Iterator<DoubleHistogramIterationValue>

public class DoubleLinearIterator
extends Object
implements 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.


Constructor Summary
DoubleLinearIterator(DoubleHistogram histogram, double valueUnitsPerBucket)
           
 
Method Summary
 boolean hasNext()
           
 DoubleHistogramIterationValue next()
           
 void remove()
           
 void reset(double valueUnitsPerBucket)
          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
 

Constructor Detail

DoubleLinearIterator

public DoubleLinearIterator(DoubleHistogram histogram,
                            double valueUnitsPerBucket)
Parameters:
histogram - The histogram this iterator will operate on
valueUnitsPerBucket - 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:
hasNext in interface Iterator<DoubleHistogramIterationValue>

next

public DoubleHistogramIterationValue next()
Specified by:
next in interface Iterator<DoubleHistogramIterationValue>

remove

public void remove()
Specified by:
remove in interface Iterator<DoubleHistogramIterationValue>


Copyright © 2014. All rights reserved.