Method remove(Object key)
Return type:
java.lang.Object
<V>
Member of:
java.util.Map
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
map.remove(key);
2
public Object remove(Object key) { return wrapped.remove(key); }
3
classMap.remove(mapping.getMappedClass());
4
return mMap.remove(key);
5
return (key == null) ? mMap.remove(NULL) : mMap.remove(key);
6
return map1.remove(v);
7
table.remove(new CacheKey(col, key));
8
values.remove(key);
9
getReponseHandlers().remove(responseID);
10
compMap.remove(comp);
11
return map.remove(o)==PRESENT;
12
return (byte[])_imagePool.remove(id);
13
context.remove(bean.name);
14
map.remove(name);
15
Object[] val = (Object[])m.remove(key);
16
activeKeys.remove(key);
17
return ( Image ) imageMap.remove ( imageFilename );
18
return fields.remove(key);
19
pools.remove(pool.getName());
20
return _variables.remove(key);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.