Uses of Interface
gnu.trove.TLinkable
-
Packages that use TLinkable Package Description gnu.trove -
-
Uses of TLinkable in gnu.trove
Classes in gnu.trove with type parameters of type TLinkable Modifier and Type Class Description classTLinkedList<T extends TLinkable>A LinkedList implementation which holds instances of type TLinkable.Classes in gnu.trove that implement TLinkable Modifier and Type Class Description classTLinkableAdapterAdapter for TLinkable interface which implements the interface and can therefore be extended trivially to create TLinkable objects without having to implement the obvious.Fields in gnu.trove declared as TLinkable Modifier and Type Field Description protected TTLinkedList. _headthe head of the listprotected TTLinkedList. _tailthe tail of the listMethods in gnu.trove that return TLinkable Modifier and Type Method Description TLinkableTLinkable. getNext()Returns the linked list node after this one.TLinkableTLinkableAdapter. getNext()Returns the linked list node after this one.TLinkableTLinkable. getPrevious()Returns the linked list node before this one.TLinkableTLinkableAdapter. getPrevious()Returns the linked list node before this one.Methods in gnu.trove with parameters of type TLinkable Modifier and Type Method Description voidTLinkable. setNext(TLinkable linkable)Sets the linked list node after this one.voidTLinkableAdapter. setNext(TLinkable linkable)Sets the linked list node after this one.voidTLinkable. setPrevious(TLinkable linkable)Sets the linked list node before this one.voidTLinkableAdapter. setPrevious(TLinkable linkable)Sets the linked list node before this one.
-