T - type of entry objectprivate static final class ConcurrentStack.Entry<T> extends Object
Not used outside the class.
| Modifier and Type | Field and Description |
|---|---|
private ConcurrentStack.Entry<T> |
next
Link to next entry, maybe
null. |
private T |
value
Entry element.
|
| Constructor and Description |
|---|
Entry(T element,
ConcurrentStack.Entry<T> next)
Dedicated constructor.
|
private final T value
private final ConcurrentStack.Entry<T> next
null.Entry(T element, ConcurrentStack.Entry<T> next)
element - entry elementnext - next elementCopyright © 2014 Sven Strittmatter. All Rights Reserved.