private static class LongLinkedList.Entry
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private LongLinkedList.Entry |
next
Stores the next entry.
|
private LongLinkedList.Entry |
previous
Stores the previous entry.
|
private long |
value
Stores the entry value.
|
| Constructor and Description |
|---|
Entry(long value,
LongLinkedList.Entry next,
LongLinkedList.Entry previous)
Creates a new entry.
|
private long value
private LongLinkedList.Entry next
private LongLinkedList.Entry previous
Entry(long value,
LongLinkedList.Entry next,
LongLinkedList.Entry previous)
value - the element valuenext - the next entryprevious - the previous entry