Method Summary |
|
public void | clear() Removes all mappings from this Map. |
public boolean | containsKey(Object key) Returns true if this map contains a mapping for the specified key.
Parameters: key - The key to look up. |
public boolean | containsValue(Object value) Returns true if this map maps one or more keys to the specified value. |
public Set<Entry<K, V>> | entrySet() Returns a set view of the mappings contained in this map. |
public boolean | equals(Object o) Compares the specified object with this map for equality.
Parameters: o - Object to be compared for equality with this map. |
public V | get(Object key) Returns the value to which this map maps the specified key.
Parameters: key - Key whose associated value is to be returned. |
protected Map<K, V> | getDelegate() Returns the delegate list. |
public int | hashCode() Returns the hash code value for this map. |
public boolean | isEmpty() Returns true if this map contains no key-value mappings. |
public Set<K> | keySet() Returns a set view of the keys contained in this map. |
public V | put(K key, V value) Associates the specified value with the specified key in this map
(optional operation).
Parameters: key - Key with which the specified value is to be associated. Parameters: value - Value to be associated with the specified key. |
public void | putAll(Map<? extends K, ? extends V> t) Copies all of the mappings from the specified map to this map (optional
operation). |
public V | remove(Object key) Removes the mapping for this key from this map if it is present (optional
operation).
Parameters: key - Key whose mapping is to be removed from the map. |
public int | size() Returns the number of key-value mappings in this map. |
public Collection<V> | values() Returns a collection view of the values contained in this map. |