Package | Description |
---|---|
com.tangosol.util |
Contains various generic utilities.
|
Modifier and Type | Class | Description |
---|---|---|
protected class |
RecyclingLinkedList.Node
A Node in the List.
|
Modifier and Type | Field | Description |
---|---|---|
protected SafeLinkedList.Node |
SafeLinkedList.m_current
The Node at the "cached position" in the List.
|
|
protected SafeLinkedList.Node |
SafeLinkedList.m_head
The first Node in the List (or null if empty).
|
|
protected SafeLinkedList.Node |
SafeLinkedList.Node.m_nodeNext
The next Node in the List.
|
|
protected SafeLinkedList.Node |
SafeLinkedList.Node.m_nodePrev
The previous Node in the List.
|
|
protected SafeLinkedList.Node |
SafeLinkedList.m_tail
The last Node in the List (or null if empty).
|
Modifier and Type | Method | Description |
---|---|---|
SafeLinkedList.Node |
SafeLinkedList.Node.getNext() |
|
protected SafeLinkedList.Node |
SafeLinkedList.getNode(int i)
Find and return the specified Node.
|
|
SafeLinkedList.Node |
SafeLinkedList.Node.getPrevious() |
|
protected SafeLinkedList.Node |
SafeLinkedList.instantiateNode(Object o)
Instantiate a Node.
|
|
protected SafeLinkedList.Node |
RecyclingLinkedList.instantiateNode(Object o)
Instantiate a Node.
|
Modifier and Type | Method | Description |
---|---|---|
protected void |
SafeLinkedList.Node.linkAfter(SafeLinkedList.Node prev)
Add this Node to the List following the specified Node.
|
|
protected void |
SafeLinkedList.Node.linkBefore(SafeLinkedList.Node next)
Add this Node to the List preceding the specified Node.
|
|
protected void |
SafeLinkedList.markPosition(int i,
SafeLinkedList.Node node)
Remember that a certain Node occurs at a certain index.
|