Class QuantilesDoublesSketchIterator

java.lang.Object
org.apache.datasketches.quantiles.QuantilesDoublesSketchIterator
All Implemented Interfaces:
QuantilesDoublesSketchIteratorAPI, QuantilesSketchIteratorAPI

public final class QuantilesDoublesSketchIterator extends Object implements QuantilesDoublesSketchIteratorAPI
Iterator over QuantilesDoublesSketch. The order is not defined.
  • Method Details

    • getQuantile

      public double getQuantile()
      Description copied from interface: QuantilesDoublesSketchIteratorAPI
      Gets the double 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 interface QuantilesDoublesSketchIteratorAPI
      Returns:
      the double quantile at the current index.
    • getWeight

      public long getWeight()
      Description copied from interface: QuantilesSketchIteratorAPI
      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 interface QuantilesSketchIteratorAPI
      Returns:
      the natural weight at the current index.
    • next

      public boolean next()
      Description copied from interface: QuantilesSketchIteratorAPI
      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 interface QuantilesSketchIteratorAPI
      Returns:
      true if the next index is valid.