|
GNU Trove | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TLinkable | |
---|---|
gnu.trove | GNU Trove: High performance collections for Java. |
Uses of TLinkable in gnu.trove |
---|
Classes in gnu.trove with type parameters of type TLinkable | |
---|---|
class |
TLinkedList<T extends TLinkable>
A LinkedList implementation which holds instances of type TLinkable. |
Classes in gnu.trove that implement TLinkable | |
---|---|
class |
TLinkableAdapter
Adapter 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 | |
---|---|
protected T |
TLinkedList._head
the head of the list |
protected T |
TLinkedList._tail
the tail of the list |
Methods in gnu.trove that return TLinkable | |
---|---|
TLinkable |
TLinkable.getNext()
Returns the linked list node after this one. |
TLinkable |
TLinkableAdapter.getNext()
Returns the linked list node after this one. |
TLinkable |
TLinkable.getPrevious()
Returns the linked list node before this one. |
TLinkable |
TLinkableAdapter.getPrevious()
Returns the linked list node before this one. |
Methods in gnu.trove with parameters of type TLinkable | |
---|---|
void |
TLinkable.setNext(TLinkable linkable)
Sets the linked list node after this one. |
void |
TLinkableAdapter.setNext(TLinkable linkable)
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. |
|
GNU Trove | |||||||||
PREV NEXT | FRAMES NO FRAMES |