T - the element that will be used for the list.public static interface ConcurrentIntrusiveList.Element<T extends ConcurrentIntrusiveList.Element<T>>
ConcurrentIntrusiveList.| Modifier and Type | Method and Description |
|---|---|
T |
getNext()
Returns a reference to the next element in the list.
|
T |
getPrev()
Returns a reference to the previous element in the list.
|
void |
setNext(T element)
Sets the reference to the next element in the list.
|
void |
setPrev(T element)
Sets the reference to the previous element in the list.
|
@Nullable T getNext()
void setNext(@Nullable T element)
element - the reference to the next element in the list.@Nullable T getPrev()