Class AbstractLinkedMap.LinkEntry<K,V>
java.lang.Object
org.apache.openjpa.lib.util.collections.AbstractHashedMap.HashEntry<K,V>
org.apache.openjpa.lib.util.collections.AbstractLinkedMap.LinkEntry<K,V>
- Enclosing class:
- AbstractLinkedMap<K,
V>
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.
-
Field Summary
Modifier and TypeFieldDescriptionprotected AbstractLinkedMap.LinkEntry<K,
V> The entry after this one in the orderprotected AbstractLinkedMap.LinkEntry<K,
V> The entry before this one in the orderFields inherited from class org.apache.openjpa.lib.util.collections.AbstractHashedMap.HashEntry
hashCode, key, next, value
-
Constructor Summary
-
Method Summary
-
Field Details
-
before
The entry before this one in the order -
after
The entry after this one in the order
-
-
Constructor Details
-
LinkEntry
Constructs a new entry.- Parameters:
next
- the next entry in the hash bucket sequencehashCode
- the hash codekey
- the keyvalue
- the value
-