public class DoubleLinkedListNode<T> extends Object implements Serializable
It simply holds the payload and a reference to the items before and after it in the list.
| Modifier and Type | Field and Description |
|---|---|
DoubleLinkedListNode<T> |
next
Double Linked list references
|
DoubleLinkedListNode<T> |
prev
Double Linked list references
|
| Constructor and Description |
|---|
DoubleLinkedListNode(T payloadP) |
public DoubleLinkedListNode<T> prev
public DoubleLinkedListNode<T> next
public DoubleLinkedListNode(T payloadP)
payloadP - public T getPayload()
Copyright © 2002–2022 The Apache Software Foundation. All rights reserved.