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

/libcore/ojluni/src/main/java/java/util/
H A DHashMap.java41 * <tt>null</tt> values and the <tt>null</tt> key. (The <tt>HashMap</tt>
51 * <tt>HashMap</tt> instance (the number of buckets) plus its size (the number
56 * <p>An instance of <tt>HashMap</tt> has two parameters that affect its
70 * the operations of the <tt>HashMap</tt> class, including
78 * <p>If many mappings are to be stored in a <tt>HashMap</tt>
100 * Map m = Collections.synchronizedMap(new HashMap(...));</pre>
137 public class HashMap<K,V> extends AbstractMap<K,V> class in inherits:AbstractMap,Map,Cloneable,Serializable
409 * The number of times this HashMap has been structurally modified
411 * the HashMap or otherwise modify its internal structure (e.g.,
413 * the HashMap fai
446 public HashMap(int initialCapacity, float loadFactor) { method in class:HashMap
466 public HashMap(int initialCapacity) { method in class:HashMap
474 public HashMap() { method in class:HashMap
487 public HashMap(Map<? extends K, ? extends V> m) { method in class:HashMap
[all...]

Completed in 35 milliseconds