| java.lang.Object henplus.util.ListMap
ListMap | final public class ListMap implements Map,Serializable(Code) | | This provides the functionality of LinkedHashMap. However, that
Collection became available at 1.4. So provide this for backward
compatibility.
author: Martin Grotzke |
Constructor Summary | |
public | ListMap() |
clear | public void clear()(Code) | | |
containsValue | public boolean containsValue(Object value)(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
keys | public List keys()(Code) | | Returns a List containing all keys.
a List containing all keys. |
keysListIterator | public ListIterator keysListIterator()(Code) | | Returns a ListIterator over the keys.
Use this method instead of combining the keySet with it's iterator method.
|
values | public Collection values()(Code) | | Returns the values as a Collection , as defined in java.util.Map .
|
valuesList | public List valuesList()(Code) | | Returns the values as a List .
|
valuesListIterator | public ListIterator valuesListIterator()(Code) | | Returns a ListIterator over the values.
|
|
|