Package org.apache.datasketches.kll
Class KllItemsSketchIterator<T>
- java.lang.Object
-
- org.apache.datasketches.kll.KllItemsSketchIterator<T>
-
- All Implemented Interfaces:
QuantilesGenericSketchIterator<T>
,QuantilesSketchIterator
public final class KllItemsSketchIterator<T> extends Object implements QuantilesGenericSketchIterator<T>
Iterator over KllItemsSketch. The order is not defined.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getQuantile()
Gets the generic quantile at the current index.long
getWeight()
Gets the natural weight at the current index.boolean
next()
Advances the index and checks if it is valid.
-
-
-
Method Detail
-
getQuantile
public T getQuantile()
Description copied from interface:QuantilesGenericSketchIterator
Gets the generic quantile at the current index.Don't call this before calling next() for the first time or after getting false from next().
- Specified by:
getQuantile
in interfaceQuantilesGenericSketchIterator<T>
- Returns:
- the generic quantile at the current index.
-
getWeight
public long getWeight()
Description copied from interface:QuantilesSketchIterator
Gets the natural weight at the current index.Don't call this before calling next() for the first time or after getting false from next().
- Specified by:
getWeight
in interfaceQuantilesSketchIterator
- Returns:
- the natural weight at the current index.
-
next
public boolean next()
Description copied from interface:QuantilesSketchIterator
Advances the index and checks if it is valid. The state of this iterator is undefined before the first call of this method.- Specified by:
next
in interfaceQuantilesSketchIterator
- Returns:
- true if the next index is valid.
-
-