Uses of Class
Listnode

Uses of Listnode in <Unnamed>
 

Fields in <Unnamed> declared as Listnode
private  Listnode<E> Listnode.next
          A reference to the next node in a singly linked chain of nodes.
 

Methods in <Unnamed> that return Listnode
 Listnode<E> LinkedList.getHeaderNode()
          Returns a reference to the header node for this linked list.
 Listnode<E> Listnode.getNext()
          Returns a reference to the next node after this node.
 

Methods in <Unnamed> with parameters of type Listnode
(package private)  void Listnode.setNext(Listnode<E> next)
          Changes what node is next after this node in a chain of node.
 

Constructors in <Unnamed> with parameters of type Listnode
LinkedListIterator(Listnode<T> head)
          Constructs a LinkedListIterator when given the first node in a chain of nodes that contains data.
Listnode(E data, Listnode<E> next)
          Constructs a new list node with a link to the next node in a chain of nodes.