public interface TLinkable<T extends TLinkable> extends Serializable
TLinkedList
| Modifier and Type | Field and Description |
|---|---|
static long |
serialVersionUID
|
| Modifier and Type | Method and Description |
|---|---|
T |
getNext()
Returns the linked list node after this one.
|
T |
getPrevious()
Returns the linked list node before this one.
|
void |
setNext(T linkable)
Sets the linked list node after this one.
|
void |
setPrevious(T linkable)
Sets the linked list node before this one.
|
static final long serialVersionUID
T getNext()
TLinkable value
T getPrevious()
TLinkable value
void setNext(T linkable)
linkable - a
TLinkable value
void setPrevious(T linkable)
linkable - a
TLinkable value