Uses of Class
LinkedListNode

Uses of LinkedListNode in <Unnamed>
 

Methods in <Unnamed> that return LinkedListNode
 LinkedListNode<I> LinkedListNode.getNext()
          Getter method to obtain a reference to the next LinkedListNode in the Linked List.
 

Methods in <Unnamed> with parameters of type LinkedListNode
 void LinkedListNode.setNext(LinkedListNode<I> next)
          Setter method to set the reference to the next LinkedListNode in the Linked List.
 

Constructors in <Unnamed> with parameters of type LinkedListNode
LinkedListNode(I data, LinkedListNode<I> next)
          Constructor that for the Node class