Uses of Class
com.tangosol.util.SafeLinkedList.Node
Packages that use SafeLinkedList.Node
-
Uses of SafeLinkedList.Node in com.tangosol.util
Subclasses of SafeLinkedList.Node in com.tangosol.utilFields in com.tangosol.util declared as SafeLinkedList.NodeModifier and TypeFieldDescriptionprotected 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.NodeModifier and TypeMethodDescriptionSafeLinkedList.Node.getNext()
protected SafeLinkedList.Node
SafeLinkedList.getNode
(int i) Find and return the specified 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.NodeModifier and TypeMethodDescriptionprotected 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.