Interface DbIterator

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
AbstractDbIterator, AscendingRangeIterator, DescendingPrefixIterator, DescendingRangeIterator

public interface DbIterator extends AutoCloseable
Iterator that does not support seek.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
    boolean
     
    byte[]
    key()
     
    void
     
    void
     
    byte[]
     
  • Method Details

    • isValid

      boolean isValid()
    • next

      void next()
    • prev

      void prev()
    • key

      byte[] key()
    • value

      byte[] value()
    • close

      void close()
      Specified by:
      close in interface AutoCloseable