Constructor HashMap(int initialCapacity)
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
private static Map monthMap = new HashMap(20);
2
private Map treemap = new HashMap(2);
3
private final Map elements_ = new HashMap( 89 );
4
private static final Map PROPERTY_MAPS = Collections.synchronizedMap( new HashMap(89) );
5
static Map browserMap = Collections.synchronizedMap(new HashMap(2));
6
private static Map cEncodings = new HashMap(7);
7
private Map _attributes = new HashMap(3);
8
public static final Map EMPTY_MAP = Collections.unmodifiableMap(new java.util.HashMap(0));
9
private final static Map mirroredGlyphs = new HashMap(50);
10
private static final Map uniquifiedIds = new HashMap(20); // Map
11
static Map writerMap = Collections.synchronizedMap(new HashMap(2));
12
private Map orphanFragments = new HashMap(11);
13
private final Map durationSessionConstants = new HashMap(2);
14
private static Map cInstanceCache = new HashMap(7);
15
private final Map currentComponent = new HashMap(11);
16
private Map fieldMap = new HashMap(10);
17
attributes = new HashMap(size);
18
_scPool = Collections.synchronizedMap(new HashMap(_SIZE));
19
entries = new HashMap(i);
20
HashMap args = new HashMap(1);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.