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