Interface QuantilesFloatsSketchIterator

All Superinterfaces:
QuantilesSketchIterator
All Known Implementing Classes:
KllFloatsSketchIterator, ReqSketchIterator

public interface QuantilesFloatsSketchIterator extends QuantilesSketchIterator
The quantiles sketch iterator for primitive type float.
Author:
Lee Rhodes
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    Gets the float quantile at the current index.

    Methods inherited from interface org.apache.datasketches.quantilescommon.QuantilesSketchIterator

    getWeight, next
  • Method Details

    • getQuantile

      float getQuantile()
      Gets the float quantile at the current index.

      Don't call this before calling next() for the first time or after getting false from next().

      Returns:
      the float quantile at the current index.