Interface WriteOrderDeque.WriteOrder<T extends WriteOrderDeque.WriteOrder<T>>

    • Method Detail

      • getPreviousInWriteOrder

        T getPreviousInWriteOrder()
        Retrieves the previous element or null if either the element is unlinked or the first element on the deque.
      • setPreviousInWriteOrder

        void setPreviousInWriteOrder​(T prev)
        Sets the previous element or null if there is no link.
      • getNextInWriteOrder

        T getNextInWriteOrder()
        Retrieves the next element or null if either the element is unlinked or the last element on the deque.
      • setNextInWriteOrder

        void setNextInWriteOrder​(T next)
        Sets the next element or null if there is no link.