⇒ Index (Frames) |  ⇒ Index (No Frames) |  ⇒ Package |  ⇒ Package Tree |  ⇒ Full Tree 
org.apache.commons.collections.map

Class AbstractLinkedMap.LinkEntry

java.lang.Object
|
+--org.apache.commons.collections.map.AbstractHashedMap.HashEntry
   |
   +--org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry
Enclosing Class:


protected static class AbstractLinkedMap.LinkEntry
extends
AbstractHashedMap.HashEntry

LinkEntry that stores the data.

Field Summary

AbstractLinkedMap.LinkEntry

after

The entry after this one in the order

AbstractLinkedMap.LinkEntry

before

The entry before this one in the order

Constructor Summary

LinkEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value)

Constructs a new entry.

Field Details

after

protected AbstractLinkedMap.LinkEntry after

The entry after this one in the order


before

protected AbstractLinkedMap.LinkEntry before

The entry before this one in the order

Constructor Details

LinkEntry

protected LinkEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value)

Constructs a new entry.

Parameters:
next - the next entry in the hash bucket sequence
hashCode - the hash code
key - the key
value - the value