Package | Description |
---|---|
gnu.trove |
GNU Trove: High performance collections for Java.
|
Modifier and Type | Class and Description |
---|---|
class |
TLinkedList<T extends TLinkable>
A LinkedList implementation which holds instances of type
TLinkable.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Field and Description |
---|---|
protected T |
TLinkedList._head
the head of the list
|
protected T |
TLinkedList._tail
the tail of the list
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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 is copyright ? 2001-2009 Eric D. Friedman. All Rights Reserved.