Interface JSHashMap.Cursor

Enclosing class:
JSHashMap

public static interface JSHashMap.Cursor
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Advances to the next entry.
    Copies the cursor (including the current state/entry).
    The key of the current entry.
    The value of the current entry.
  • Method Details

    • advance

      boolean advance()
      Advances to the next entry.
      Returns:
      true if a next entry exists, false if there is no next entry.
    • getKey

      Object getKey()
      The key of the current entry.
    • getValue

      Object getValue()
      The value of the current entry.
    • copy

      Copies the cursor (including the current state/entry).