org.exolab.castor.util
public class OrderedHashMap extends HashMap
UNKNOWN: $Revision: 1.1 $ $Date: 2004/12/15 00:16:52 $
Constructor Summary | |
---|---|
OrderedHashMap()
Creates a new OrderedHashMap | |
OrderedHashMap(int initialCapacity)
Creates a new OrderedHashMap with the given initial capacity
| |
OrderedHashMap(Map m)
Creates a new OrderedHashMap with the same entries
as the given map.
|
Method Summary | |
---|---|
void | clear() |
Object | clone() |
Set | entrySet()
Returns the Map.Entry set for this Map. |
Set | keySet()
Returns the key set for this Map. |
Object | put(Object key, Object value) |
void | putAll(Map m) |
Object | remove(Object key) |
Collection | values()
Returns the set of values for this Map. |
Parameters: initialCapacity
Parameters: m the Map to initialize this Map with
See Also: java.util.Map#entrySet()
See Also: java.util.Map#keySet()
See Also: java.util.Map#values()