Package org.HdrHistogram
Class AllValuesIterator
- java.lang.Object
-
- org.HdrHistogram.AllValuesIterator
-
- All Implemented Interfaces:
Iterator<HistogramIterationValue>
public class AllValuesIterator extends Object implements Iterator<HistogramIterationValue>
Used for iterating through histogram 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
Constructors Constructor Description AllValuesIterator(AbstractHistogram histogram)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Returns true if the iteration has more elements.HistogramIterationValuenext()Returns the next element in the iteration.voidremove()Not supported.voidreset()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
-
Methods inherited from interface java.util.Iterator
forEachRemaining, next, remove
-
-
-
-
Constructor Detail
-
AllValuesIterator
public AllValuesIterator(AbstractHistogram 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()
Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)- Specified by:
hasNextin interfaceIterator<HistogramIterationValue>- Returns:
- true if the iterator has more elements.
-
next
public HistogramIterationValue next()
Returns the next element in the iteration.- Specified by:
nextin interfaceIterator<HistogramIterationValue>- Returns:
- the
HistogramIterationValueassociated with the next element in the iteration.
-
remove
public void remove()
Not supported. Will throw anUnsupportedOperationException.- Specified by:
removein interfaceIterator<HistogramIterationValue>
-
-