Searched defs:LinkedHashMap (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/
H A DLinkedHashMap.java48 * Map copy = new LinkedHashMap(m);
57 * <p>A special {@link #LinkedHashMap(int,float,boolean) constructor} is
81 * of a <tt>LinkedHashMap</tt> requires time proportional to the <i>size</i>
103 * Map m = Collections.synchronizedMap(new LinkedHashMap(...));</pre>
147 public class LinkedHashMap<K,V> class in inherits:HashMap,Map
168 * Constructs an empty insertion-ordered <tt>LinkedHashMap</tt> instance
176 public LinkedHashMap(int initialCapacity, float loadFactor) { method in class:LinkedHashMap
182 * Constructs an empty insertion-ordered <tt>LinkedHashMap</tt> instance
188 public LinkedHashMap(int initialCapacity) { method in class:LinkedHashMap
194 * Constructs an empty insertion-ordered <tt>LinkedHashMap</t
197 public LinkedHashMap() { method in class:LinkedHashMap
211 public LinkedHashMap(Map<? extends K, ? extends V> m) { method in class:LinkedHashMap
227 public LinkedHashMap(int initialCapacity, method in class:LinkedHashMap
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java45 * An instance of LinkedHashMap has two parameters that affect its efficiency:
47 * between 0.0 and 1.0. When the number of mappings in the LinkedHashMap exceeds
54 * If many mappings are to be stored in a LinkedHashMap, creating it with a
60 * multiple threads access a LinkedHashMap concurrently, and at least one of the
61 * threads modifies the LinkedHashMap structurally, it <em>must</em> be
66 * object that naturally encapsulates the LinkedHashMap. If no such object
67 * exists, the LinkedHashMap should be "wrapped" using the
69 * prevent accidental unsynchronized access to the LinkedHashMap:
71 * Map m = Collections.synchronizedMap(new LinkedHashMap(...));
75 * by all of LinkedHashMap'
96 public class LinkedHashMap extends AbstractMap implements Map, Serializable { class in inherits:AbstractMap,Map,Serializable
141 public LinkedHashMap(int initialCapacity, float loadFactor) { method in class:LinkedHashMap
163 public LinkedHashMap(int initialCapacity) { method in class:LinkedHashMap
171 public LinkedHashMap() { method in class:LinkedHashMap
181 public LinkedHashMap(Map t) { method in class:LinkedHashMap
[all...]

Completed in 32 milliseconds