LRUCache.LRUNode, RunnableQueue.Linkpublic static class DoublyLinkedList.Node
extends java.lang.Object
| Constructor | Description |
|---|---|
Node() |
| Modifier and Type | Method | Description |
|---|---|---|
DoublyLinkedList.Node |
getNext() |
|
DoublyLinkedList.Node |
getPrev() |
|
protected void |
insertBefore(DoublyLinkedList.Node nde) |
Link this node in, infront of nde (unlinks it's self
before hand if needed).
|
protected void |
setNext(DoublyLinkedList.Node newNext) |
|
protected void |
setPrev(DoublyLinkedList.Node newPrev) |
|
protected void |
unlink() |
Unlink this node from it's current list...
|
public final DoublyLinkedList.Node getNext()
public final DoublyLinkedList.Node getPrev()
protected final void setNext(DoublyLinkedList.Node newNext)
protected final void setPrev(DoublyLinkedList.Node newPrev)
protected final void unlink()
protected final void insertBefore(DoublyLinkedList.Node nde)
nde - the node to link in before.Copyright ? 2018 Apache Software Foundation. All Rights Reserved.