Class AbstractLinkedMap.LinkEntry<K,V> 
java.lang.Object
org.apache.commons.collections4.map.AbstractHashedMap.HashEntry<K,V>
 
org.apache.commons.collections4.map.AbstractLinkedMap.LinkEntry<K,V> 
- Type Parameters:
- K- the key type.
- V- the value type.
- 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.
 
- Since:
- 3.0
- 
Field SummaryFieldsModifier 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.commons.collections4.map.AbstractHashedMap.HashEntryhashCode, key, next, value
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
beforeThe entry before this one in the order
- 
afterThe entry after this one in the order
 
- 
- 
Constructor Details- 
LinkEntry
 
-