Interface DoublyLinkedList.ListNode<V>

    • Method Detail

      • getValue

        V getValue()
        Returns the immutable value this ListNode contains.
        Returns:
        the value this list node contains
      • getNext

        DoublyLinkedList.ListNode<V> getNext()
        Returns the next node in the list structure with respect to this node
        Returns:
        the next node in the list structure with respect to this node
      • getPrev

        DoublyLinkedList.ListNode<V> getPrev()
        Returns the previous node in the list structure with respect to this node
        Returns:
        the previous node in the list structure with respect to this node