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.ListNode
is either contained exactly once in exactly oneDoublyLinkedList
or contained in noDoublyLinkedList
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description V
getValue()
Returns the immutable value thisListNode
contains.
-
-
-
Method Detail
-
getValue
V getValue()
Returns the immutable value thisListNode
contains.- Returns:
- the value this list node contains
-
-