| java.util.LinkedHashMap org.geotools.util.CheckedHashMap
CheckedHashMap | public class CheckedHashMap extends LinkedHashMap implements Cloneable(Code) | | Acts as a typed
java.util.Map while we wait for Java 5.0.
since: 2.1 version: $Id: CheckedHashMap.java 22443 2006-10-27 20:47:22Z desruisseaux $ author: Jody Garnett (Refractions Research) author: Martin Desruisseaux MetadataEntity.unmodifiable(Object) |
Method Summary | |
public Object | put(Object key, Object value) Associates the specified value with the specified key in this map.
If the map previously contained a mapping for this key, the old
value is replaced.
Parameters: key - key with which the specified value is to be associated. Parameters: value - value to be associated with the specified key. |
CheckedHashMap | public CheckedHashMap(Class keyType, Class valueType)(Code) | | Constructs a map of the specified type.
Parameters: keyType - The key type (should not be null). Parameters: valueType - The value type (should not be null). |
put | public Object put(Object key, Object value)(Code) | | Associates the specified value with the specified key in this map.
If the map previously contained a mapping for this key, the old
value is replaced.
Parameters: key - key with which the specified value is to be associated. Parameters: value - value to be associated with the specified key. previous value associated with specified key, or null . |
|
|