Interface QuantilesLongsSketchIterator

All Superinterfaces:
QuantilesSketchIterator
All Known Implementing Classes:
KllLongsSketchIterator

public interface QuantilesLongsSketchIterator extends QuantilesSketchIterator
The quantiles sketch iterator for primitive type long.
Author:
Zac Blanco
See Also:
  • Method Summary

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

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

    getWeight, next
  • Method Details

    • getQuantile

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

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

      Returns:
      the long quantile at the current index.