protected static class AbstractLinkedMap.LinkEntry<K,V> extends AbstractHashedMap.HashEntry<K,V>
If you subclass AbstractLinkedMap but not LinkEntry
then you will not be able to access the protected fields.
The entryXxx() methods on AbstractLinkedMap exist
to provide the necessary access.
| Modifier and Type | Field and Description |
|---|---|
protected AbstractLinkedMap.LinkEntry<K,V> |
after
The entry after this one in the order
|
protected AbstractLinkedMap.LinkEntry<K,V> |
before
The entry before this one in the order
|
hashCode, key, next, value| Modifier | Constructor and Description |
|---|---|
protected |
LinkEntry(AbstractHashedMap.HashEntry<K,V> next,
int hashCode,
Object key,
V value)
Constructs a new entry.
|
equals, getKey, getValue, hashCode, setValue, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitcomparingByKey, comparingByKey, comparingByValue, comparingByValueprotected AbstractLinkedMap.LinkEntry<K,V> before
protected AbstractLinkedMap.LinkEntry<K,V> after
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.