Package org.HdrHistogram
Class RecordedValuesIterator
java.lang.Object
org.HdrHistogram.AbstractHistogramIterator
org.HdrHistogram.RecordedValuesIterator
- All Implemented Interfaces:
Iterator<HistogramIterationValue>
public class RecordedValuesIterator
extends AbstractHistogramIterator
implements Iterator<HistogramIterationValue>
Used for iterating through all recorded histogram values using the finest granularity steps supported by the
underlying representation. The iteration steps through all non-zero recorded value counts, and terminates when
all recorded histogram values are exhausted.
-
Field Summary
FieldsFields inherited from class org.HdrHistogram.AbstractHistogramIterator
arrayTotalCount, countAtThisValue, currentIndex, currentIterationValue, currentValueAtIndex, histogram, nextValueAtIndex, prevValueIteratedTo, totalCountToCurrentIndex, totalCountToPrevIndex, totalValueToCurrentIndex -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) void(package private) booleanvoidreset()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, hasNext, incrementSubBucket, next, remove, resetIteratorMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
Field Details
-
visitedIndex
int visitedIndex
-
-
Constructor Details
-
RecordedValuesIterator
- Parameters:
histogram- The histogram this iterator will operate on
-
-
Method Details
-
reset
public void reset()Reset iterator for re-use in a fresh iteration over the same histogram data set. -
reset
-
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
-