Uses of Interface
gnu.trove.TLinkable
Packages that use TLinkable
-
Uses of TLinkable in gnu.trove
Modifier and TypeClassDescriptionclass
TLinkedList<T extends TLinkable>
A LinkedList implementation which holds instances of type TLinkable.Modifier and TypeClassDescriptionclass
Adapter for TLinkable interface which implements the interface and can therefore be extended trivially to create TLinkable objects without having to implement the obvious.Modifier and TypeFieldDescriptionprotected T
TLinkedList._head
the head of the listprotected T
TLinkedList._tail
the tail of the listModifier and TypeMethodDescriptionTLinkable.getNext()
Returns the linked list node after this one.TLinkableAdapter.getNext()
Returns the linked list node after this one.TLinkable.getPrevious()
Returns the linked list node before this one.TLinkableAdapter.getPrevious()
Returns the linked list node before this one.Modifier and TypeMethodDescriptionvoid
Sets the linked list node after this one.void
Sets the linked list node after this one.void
TLinkable.setPrevious
(TLinkable linkable) Sets the linked list node before this one.void
TLinkableAdapter.setPrevious
(TLinkable linkable) Sets the linked list node before this one.