Uses of Interface
org.apache.datasketches.quantilescommon.QuantilesSketchIterator
-
Packages that use QuantilesSketchIterator Package Description org.apache.datasketches.kll This package is for the implementations of the sketch algorithm developed by Zohar Karnin, Kevin Lang, and Edo Liberty that is commonly referred to as the "KLL" sketch after the authors' last names.org.apache.datasketches.quantiles The quantiles package contains stochastic streaming algorithms that enable single-pass analysis of the distribution of a stream of quantiles.org.apache.datasketches.quantilescommon This package contains common tools and methods for the quantiles, kll and req packages.org.apache.datasketches.req This package is for the implementation of the Relative Error Quantiles sketch algorithm. -
-
Uses of QuantilesSketchIterator in org.apache.datasketches.kll
Classes in org.apache.datasketches.kll that implement QuantilesSketchIterator Modifier and Type Class Description classKllDoublesSketchIteratorIterator over KllDoublesSketch.classKllFloatsSketchIteratorIterator over KllFloatsSketch.classKllItemsSketchIterator<T>Iterator over KllItemsSketch.classKllLongsSketchIteratorIterator over KllLongsSketch.classKllSketchIteratorThe base implementation for the KLL sketch iterator hierarchy used for viewing the non-ordered quantiles retained by a sketch. -
Uses of QuantilesSketchIterator in org.apache.datasketches.quantiles
Classes in org.apache.datasketches.quantiles that implement QuantilesSketchIterator Modifier and Type Class Description classDoublesSketchIteratorIterator over DoublesSketch.classItemsSketchIterator<T>Iterator over ItemsSketch. -
Uses of QuantilesSketchIterator in org.apache.datasketches.quantilescommon
Subinterfaces of QuantilesSketchIterator in org.apache.datasketches.quantilescommon Modifier and Type Interface Description interfaceQuantilesDoublesSketchIteratorThe quantiles sketch iterator for primitive type double.interfaceQuantilesFloatsSketchIteratorThe quantiles sketch iterator for primitive type float.interfaceQuantilesGenericSketchIterator<T>The quantiles sketch iterator for generic types.interfaceQuantilesLongsSketchIteratorThe quantiles sketch iterator for primitive type long. -
Uses of QuantilesSketchIterator in org.apache.datasketches.req
Classes in org.apache.datasketches.req that implement QuantilesSketchIterator Modifier and Type Class Description classReqSketchIteratorIterator over all retained items of the ReqSketch.
-