org.HdrHistogram
Class DoubleRecordedValuesIterator

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

public class DoubleRecordedValuesIterator
extends Object
implements Iterator<DoubleHistogramIterationValue>

Used for iterating through DoubleHistogram values values using the finest granularity steps supported by the underlying representation. The iteration steps through all possible unit value levels, regardless of whether or not there were recorded values for that value level, and terminates when all recorded histogram values are exhausted.


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

DoubleRecordedValuesIterator

public DoubleRecordedValuesIterator(DoubleHistogram histogram)
Parameters:
histogram - The histogram this iterator will operate on
Method Detail

reset

public void reset()
Reset iterator for re-use in a fresh iteration over the same histogram data set.


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.