Constructor HashMap(Map extends K,? extends V> m)
Member of:
java.util.HashMap
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
HashMap map = new HashMap(this);
2
{ return new HashMap( map ); }
3
existingMap = new HashMap(newMap);
4
return new HashMap(this.parameters);
5
return new HashMap( (Map)getSettingValue(SettingsNames.FIND_HISTORY) );
6
Map ret = new HashMap(original);
7
return new HashMap((Map)super.getSettingValue(SettingsNames.ABBREV_MAP) );
8
Map newMap = new HashMap(orderHeader);
9
map = new HashMap(map1);
10
return new HashMap(fields);
11
arguments = value == null ? null : new HashMap(value);
12
storedItems = new HashMap(map);
13
this.map = new HashMap(map);
14
HashMap attributes = new HashMap(font.getAttributes());
15
originalParameterMap = new HashMap(request.getParameterMap());
16
this.map = new HashMap(pdoc.map);
17
attributes = new HashMap( definition.getAttributes() );
18
Map customProperties = new HashMap(
19
c._variables = new HashMap(_variables);
20
HashMap headerHashMap = new HashMap(conn.getHeaderFields());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.