Interface JsonIterator.EntryIterator

Enclosing interface:
JsonIterator

public static interface JsonIterator.EntryIterator
Element/entry iterator.
Author:
Jsoniter
  • Method Summary

    Modifier and Type
    Method
    Description
    key()
    Returns the next entry key.
    boolean
    Is there a next entry?
    Returns the next entry value.
  • Method Details

    • next

      boolean next()
      Is there a next entry?
      Returns:
      true for next entry, false for none
    • key

      String key()
      Returns the next entry key.
      Returns:
      the key
    • value

      JsonIterator value()
      Returns the next entry value.
      Returns:
      the key