public abstract class ProxyMap extends Object implements Map
This Map wraps another Map
implementation, using the wrapped instance for its default
implementation. This class is used as a framework on which to
build to extensions for its wrapped Map object which
would be unavailable or inconvenient via sub-classing (but usable
via composition).
This implementation does not perform any special processing with
entrySet(), keySet() or values(). Instead
it simply returns the set/collection from the wrapped map. This may be
undesirable, for example if you are trying to write a validating
implementation it would provide a loophole around the validation. But,
you might want that loophole, so this class is kept simple.
| Modifier and Type | Field and Description |
|---|---|
protected Map |
map
Deprecated.
The
Map to delegate to. |
| Constructor and Description |
|---|
ProxyMap(Map map)
Deprecated.
Constructor that uses the specified map to delegate to.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Deprecated.
Invokes the underlying
Map.clear() method. |
boolean |
containsKey(Object key)
Deprecated.
Invokes the underlying
Map.containsKey(Object) method. |
boolean |
containsValue(Object value)
Deprecated.
Invokes the underlying
Map.containsValue(Object) method. |
Set |
entrySet()
Deprecated.
Invokes the underlying
Map.entrySet() method. |
boolean |
equals(Object m)
Deprecated.
Invokes the underlying
Map.equals(Object) method. |
Object |
get(Object key)
Deprecated.
Invokes the underlying
Map.get(Object) method. |
int |
hashCode()
Deprecated.
Invokes the underlying
Map.hashCode() method. |
boolean |
isEmpty()
Deprecated.
Invokes the underlying
Map.isEmpty() method. |
Set |
keySet()
Deprecated.
Invokes the underlying
Map.keySet() method. |
Object |
put(Object key,
Object value)
Deprecated.
Invokes the underlying
Map.put(Object,Object) method. |
void |
putAll(Map t)
Deprecated.
Invokes the underlying
Map.putAll(Map) method. |
Object |
remove(Object key)
Deprecated.
Invokes the underlying
Map.remove(Object) method. |
int |
size()
Deprecated.
Invokes the underlying
Map.size() method. |
Collection |
values()
Deprecated.
Invokes the underlying
Map.values() method. |
protected Map map
Map to delegate to.public ProxyMap(Map map)
Note that the map is used for delegation, and is not copied. This is
different to the normal use of a Map parameter in
collections constructors.
map - the Map to delegate topublic void clear()
Map.clear() method.public boolean containsKey(Object key)
Map.containsKey(Object) method.containsKey in interface Mappublic boolean containsValue(Object value)
Map.containsValue(Object) method.containsValue in interface Mappublic Set entrySet()
Map.entrySet() method.public boolean equals(Object m)
Map.equals(Object) method.public Object get(Object key)
Map.get(Object) method.public int hashCode()
Map.hashCode() method.public boolean isEmpty()
Map.isEmpty() method.public Set keySet()
Map.keySet() method.public Object put(Object key, Object value)
Map.put(Object,Object) method.public void putAll(Map t)
Map.putAll(Map) method.public Object remove(Object key)
Map.remove(Object) method.public int size()
Map.size() method.public Collection values()
Map.values() method.Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.