Interface HashIterator


public interface HashIterator
This is used to iterate over the retained hash values of the Theta sketch.
Author:
Lee Rhodes
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    get()
    Gets the hash value
    boolean
    Returns true at the next hash value in sequence.
  • Method Details

    • get

      long get()
      Gets the hash value
      Returns:
      the hash value
    • next

      boolean next()
      Returns true at the next hash value in sequence. If false, the iteration is done.
      Returns:
      true at the next hash value in sequence.