public class DoubleLinkedListNode
extends java.lang.Object
implements java.io.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 |
next
Double Linked list references
|
DoubleLinkedListNode |
prev
Double Linked list references
|
| Constructor and Description |
|---|
DoubleLinkedListNode(java.lang.Object payloadP) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
getPayload() |
public DoubleLinkedListNode prev
public DoubleLinkedListNode next
Copyright © 2002-2013 Apache Software Foundation. All Rights Reserved.