Package org.jgrapht.util
Interface DoublyLinkedList.ListNode<V>
-
- Type Parameters:
V- the type of the element stored in this node
- Enclosing class:
- DoublyLinkedList<E>
public static interface DoublyLinkedList.ListNode<V>Container for the elements stored in aDoublyLinkedList.A
DoublyLinkedList.ListNodeis either contained exactly once in exactly oneDoublyLinkedListor contained in noDoublyLinkedList.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VgetValue()Returns the immutable value thisListNodecontains.
-
-
-
Method Detail
-
getValue
V getValue()
Returns the immutable value thisListNodecontains.- Returns:
- the value this list node contains
-
-