anthill.util
Class MapList.Entry

java.lang.Object
  |
  +--anthill.util.MapList.Entry
All Implemented Interfaces:
Serializable
Enclosing class:
MapList

protected class MapList.Entry
extends Object
implements Serializable

The Entry class is an inner class used to link objects stored in the map into a list.

See Also:
Serialized Form

Field Summary
protected  Object key
          The key used for accessing the value.
protected  MapList.Entry next
          Next pair in the linked list
protected  MapList.Entry prev
          Previous pair in the linked list
protected  Object value
          The value stored by this object
 
Constructor Summary
protected MapList.Entry(Object key, Object value)
          Initializing constructor, to be inserted at the tail, thus requires you to specify the previous tail.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

key

protected Object key
The key used for accessing the value.


value

protected Object value
The value stored by this object


next

protected MapList.Entry next
Next pair in the linked list


prev

protected MapList.Entry prev
Previous pair in the linked list

Constructor Detail

MapList.Entry

protected MapList.Entry(Object key,
                        Object value)
Initializing constructor, to be inserted at the tail, thus requires you to specify the previous tail.