public class DLNode<E>
extends java.lang.Object
DNode
class in that it
does not implement the Position
interface, for
simplification purposes.Modifier and Type | Method and Description |
---|---|
E |
getElement() |
DLNode<E> |
getNext() |
DLNode<E> |
getPrev() |
void |
setElement(E newElem) |
void |
setNext(DLNode<E> newNext) |
void |
setPrev(DLNode<E> newPrev) |