Uses of Class
Node

Uses of Node in <Unnamed>
 

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

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

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