public interface TLinkable<T extends TLinkable>
extends java.io.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
valueT getPrevious()
TLinkable
valuevoid setNext(T linkable)
linkable
- a TLinkable
valuevoid setPrevious(T linkable)
linkable
- a TLinkable
value