protected static class AbstractHashedMap.HashEntry extends Object implements Map.Entry, KeyValue
If you subclass AbstractHashedMap
but not HashEntry
then you will not be able to access the protected fields.
The entryXxx()
methods on AbstractHashedMap
exist
to provide the necessary access.
Modifier and Type | Field and Description |
---|---|
protected int |
hashCode
The hash code of the key
|
protected Object |
key
The key
|
protected AbstractHashedMap.HashEntry |
next
The next entry in the hash chain
|
protected Object |
value
The value
|
Modifier | Constructor and Description |
---|---|
protected |
AbstractHashedMap.HashEntry(AbstractHashedMap.HashEntry next,
int hashCode,
Object key,
Object value) |
protected AbstractHashedMap.HashEntry next
protected int hashCode
protected Object key
protected Object value
protected AbstractHashedMap.HashEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value)
Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.