Interface PropertyCursor

  • All Superinterfaces:
    java.lang.AutoCloseable
    All Known Implementing Classes:
    TransientAdjacencyList.Cursor

    public interface PropertyCursor
    extends java.lang.AutoCloseable
    • Method Detail

      • init

        PropertyCursor init​(long index)
        Initialize this cursor to point to the given index.
      • hasNextLong

        boolean hasNextLong()
        Return true iff there is at least one more target to decode.
      • nextLong

        long nextLong()
        Read the next target id. It is undefined behavior if this is called after hasNextLong() returns false.
      • close

        void close()
        Specified by:
        close in interface java.lang.AutoCloseable