Modifier and Type | Method and Description |
---|---|
LinkedListNode<I> |
LinkedListNode.getNext()
Getter method to obtain a reference to the next LinkedListNode in the Linked List.
|
Modifier and Type | Method and Description |
---|---|
void |
LinkedListNode.setNext(LinkedListNode<I> next)
Setter method to set the reference to the next LinkedListNode in the Linked List.
|
Constructor and Description |
---|
LinkedListNode(I data,
LinkedListNode<I> next)
Constructor that for the Node class
|