protected static class

AbstractLinkedMap.LinkEntry

extends AbstractHashedMap.HashEntry
java.lang.Object
   ↳ org.apache.commons.collections.map.AbstractHashedMap.HashEntry
     ↳ org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry

Class Overview

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.

Summary

Fields
protected AbstractLinkedMap.LinkEntry after The entry after this one in the order
protected AbstractLinkedMap.LinkEntry before The entry before this one in the order
[Expand]
Inherited Fields
From class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
Protected Constructors
AbstractLinkedMap.LinkEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value)
Constructs a new entry.
[Expand]
Inherited Methods
From class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
From class java.lang.Object
From interface java.util.Map.Entry
From interface org.apache.commons.collections.KeyValue

Fields

protected AbstractLinkedMap.LinkEntry after

The entry after this one in the order

protected AbstractLinkedMap.LinkEntry before

The entry before this one in the order

Protected Constructors

protected AbstractLinkedMap.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