Constructor HashMap(int initialCapacity, float loadFactor)
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 contentProducers = new HashMap(2, 0.5f);
2
private static final Map _typeMap = new HashMap (13, 1F);
3
entries = new HashMap(i, f);
4
map = new HashMap(i, f);
5
attrMap = new HashMap(6, (float)0.9);
6
this.configurations = new HashMap(3, 2);
7
map = new HashMap(initialCapacity, loadFactor);
8
this.map = new HashMap(capacity, factor);
9
map = new HashMap(initialCapacity, loadFactor);
10
HashMap map = new HashMap ( _hits.size (), 1 );
11
this.propByName = new HashMap(hashTableSize, 1.0f);
12
HashMap tmp = new HashMap(cache.mutable.size() * 2, (float) 0.5);
13
cache = new HashMap(initialCapacity, loadFactor);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.