Uses of Class
com.tangosol.util.SafeLinkedList.Node
-
Packages that use SafeLinkedList.Node Package Description com.tangosol.util Contains various generic utilities. -
-
Uses of SafeLinkedList.Node in com.tangosol.util
Subclasses of SafeLinkedList.Node in com.tangosol.util Modifier and Type Class Description protected class
RecyclingLinkedList.Node
A Node in the List.Fields in com.tangosol.util declared as SafeLinkedList.Node 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).Methods in com.tangosol.util that return SafeLinkedList.Node 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
RecyclingLinkedList. instantiateNode(Object o)
Instantiate a Node.protected SafeLinkedList.Node
SafeLinkedList. instantiateNode(Object o)
Instantiate a Node.Methods in com.tangosol.util with parameters of type SafeLinkedList.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.
-