|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.restlet.util.WrapperMap<K,V>
public class WrapperMap<K,V>
Map wrapper. Modifiable map that delegates all methods to a wrapped map. This allows an easy subclassing.
Collections,
List| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
Map.Entry<K,V> |
| Constructor Summary | |
|---|---|
WrapperMap()
Constructor. |
|
WrapperMap(Map<K,V> delegate)
Constructor. |
|
| Method Summary | |
|---|---|
void |
clear()
Removes all mappings from this Map. |
boolean |
containsKey(Object key)
Returns true if this map contains a mapping for the specified key. |
boolean |
containsValue(Object value)
Returns true if this map maps one or more keys to the specified value. |
Set<Map.Entry<K,V>> |
entrySet()
Returns a set view of the mappings contained in this map. |
boolean |
equals(Object o)
Compares the specified object with this map for equality. |
V |
get(Object key)
Returns the value to which this map maps the specified key. |
protected Map<K,V> |
getDelegate()
Returns the delegate list. |
int |
hashCode()
Returns the hash code value for this map. |
boolean |
isEmpty()
Returns true if this map contains no key-value mappings. |
Set<K> |
keySet()
Returns a set view of the keys contained in this map. |
V |
put(K key,
V value)
Associates the specified value with the specified key in this map (optional operation). |
void |
putAll(Map<? extends K,? extends V> t)
Copies all of the mappings from the specified map to this map (optional operation). |
V |
remove(Object key)
Removes the mapping for this key from this map if it is present (optional operation). |
int |
size()
Returns the number of key-value mappings in this map. |
Collection<V> |
values()
Returns a collection view of the values contained in this map. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public WrapperMap()
public WrapperMap(Map<K,V> delegate)
delegate - The delegate list.| Method Detail |
|---|
public void clear()
clear in interface Map<K,V>public boolean containsKey(Object key)
containsKey in interface Map<K,V>key - The key to look up.
public boolean containsValue(Object value)
containsValue in interface Map<K,V>value - The value to look up
public Set<Map.Entry<K,V>> entrySet()
entrySet in interface Map<K,V>public boolean equals(Object o)
equals in interface Map<K,V>equals in class Objecto - Object to be compared for equality with this map.
public V get(Object key)
get in interface Map<K,V>key - Key whose associated value is to be returned.
protected Map<K,V> getDelegate()
public int hashCode()
hashCode in interface Map<K,V>hashCode in class Objectpublic boolean isEmpty()
isEmpty in interface Map<K,V>public Set<K> keySet()
keySet in interface Map<K,V>
public V put(K key,
V value)
put in interface Map<K,V>key - Key with which the specified value is to be associated.value - Value to be associated with the specified key.
public void putAll(Map<? extends K,? extends V> t)
putAll in interface Map<K,V>t - Mappings to be stored in this map.public V remove(Object key)
remove in interface Map<K,V>key - Key whose mapping is to be removed from the map.
public int size()
size in interface Map<K,V>public Collection<V> values()
values in interface Map<K,V>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||