| Modifier and Type | Field and Description |
|---|---|
protected Node<E> |
NodeQueue.head |
protected Node<E> |
NodeQueue.tail |
| Modifier and Type | Method and Description |
|---|---|
Node<E> |
Node.getNext() |
| Modifier and Type | Method and Description |
|---|---|
void |
Node.setNext(Node<E> newNext) |
| Constructor and Description |
|---|
Node(E e,
Node<E> n)
Creates a node with the given element and next node.
|