Class DoublyLinkedList.Node
java.lang.Object
org.apache.batik.util.DoublyLinkedList.Node
- Direct Known Subclasses:
LRUCache.LRUNode, RunnableQueue.Link
- Enclosing class:
DoublyLinkedList
Basic doubly linked list node interface.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal DoublyLinkedList.NodegetNext()final DoublyLinkedList.NodegetPrev()protected final voidLink this node in, infront of nde (unlinks it's self before hand if needed).protected final voidsetNext(DoublyLinkedList.Node newNext) protected final voidsetPrev(DoublyLinkedList.Node newPrev) protected final voidunlink()Unlink this node from it's current list...
-
Constructor Details
-
Node
public Node()
-
-
Method Details
-
getNext
-
getPrev
-
setNext
-
setPrev
-
unlink
protected final void unlink()Unlink this node from it's current list... -
insertBefore
Link this node in, infront of nde (unlinks it's self before hand if needed).- Parameters:
nde- the node to link in before.
-