Package org.HdrHistogram
Class AllValuesIterator
- java.lang.Object
-
- org.HdrHistogram.AbstractHistogramIterator
-
- org.HdrHistogram.AllValuesIterator
-
- All Implemented Interfaces:
java.util.Iterator<HistogramIterationValue>
public class AllValuesIterator extends AbstractHistogramIterator implements java.util.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.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) intvisitedIndex-
Fields inherited from class org.HdrHistogram.AbstractHistogramIterator
arrayTotalCount, countAtThisValue, currentIndex, currentIterationValue, currentValueAtIndex, histogram, nextValueAtIndex, prevValueIteratedTo, totalCountToCurrentIndex, totalCountToPrevIndex, totalValueToCurrentIndex
-
-
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.(package private) voidincrementIterationLevel()(package private) booleanreachedIterationLevel()voidreset()Reset iterator for re-use in a fresh iteration over the same histogram data set.private voidreset(AbstractHistogram histogram)-
Methods inherited from class org.HdrHistogram.AbstractHistogramIterator
getPercentileIteratedFrom, getPercentileIteratedTo, getValueIteratedTo, incrementSubBucket, next, remove, resetIterator
-
-
-
-
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.
-
reset
private void reset(AbstractHistogram histogram)
-
incrementIterationLevel
void incrementIterationLevel()
- Specified by:
incrementIterationLevelin classAbstractHistogramIterator
-
reachedIterationLevel
boolean reachedIterationLevel()
- Specified by:
reachedIterationLevelin classAbstractHistogramIterator- Returns:
- true if the current position's data should be emitted by the iterator
-
hasNext
public boolean hasNext()
Description copied from class:AbstractHistogramIteratorReturns 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 interfacejava.util.Iterator<HistogramIterationValue>- Overrides:
hasNextin classAbstractHistogramIterator- Returns:
- true if the iterator has more elements.
-
-