org.apache.commons.collections.map
Class AbstractLinkedMap.LinkEntry
- AbstractLinkedMap
- Map.Entry, KeyValue
protected static class AbstractLinkedMap.LinkEntry
LinkEntry that stores the data.
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.
LinkEntry
protected LinkEntry(AbstractHashedMap.HashEntry next,
int hashCode,
Object key,
Object value)
Constructs a new entry.
next
- the next entry in the hash bucket sequencehashCode
- the hash codekey
- the keyvalue
- the value
Copyright © 2001-2006 Apache Software Foundation. All Rights Reserved.