org.apache.commons.collections.map
protected static class AbstractHashedMap.HashEntry extends Object implements 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.
Field Summary | |
---|---|
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 |
Constructor Summary | |
---|---|
protected | HashEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) |
Method Summary | |
---|---|
boolean | equals(Object obj) |
Object | getKey() |
Object | getValue() |
int | hashCode() |
Object | setValue(Object value) |
String | toString() |