Class AbstractHashedMap.HashEntry
java.lang.Object
com.espertech.esper.common.internal.collection.apachecommons.AbstractHashedMap.HashEntry
- Direct Known Subclasses:
AbstractReferenceMap.ReferenceEntry
- Enclosing class:
- AbstractHashedMap
HashEntry used to store the data.
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
-
Constructor Summary
ModifierConstructorDescriptionprotected
HashEntry
(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Ctor. -
Method Summary
-
Field Details
-
next
The next entry in the hash chain -
hashCode
protected int hashCodeThe hash code of the key -
key
The key -
value
The value
-
-
Constructor Details
-
HashEntry
Ctor.- Parameters:
next
- the nexthashCode
- the hash codekey
- the keyvalue
- the value
-
-
Method Details