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

/dalvik/libcore/luni/src/main/java/java/util/
H A DHashMap.java32 * HashMap is an implementation of {@link Map}. All optional operations are supported.
36 * <p>Note that the iteration order for HashMap is non-deterministic. If you want
39 * <p>Note: the implementation of {@code HashMap} is not synchronized.
56 public class HashMap<K, V> extends AbstractMap<K, V> implements Cloneable, Serializable { class in inherits:AbstractMap,Cloneable,Serializable
58 * Min capacity (other than zero) for a HashMap. Must be a power of two
64 * Max capacity for a HashMap. Must be a power of two >= MINIMUM_CAPACITY.
125 * Constructs a new empty {@code HashMap} instance.
128 public HashMap() { method in class:HashMap
134 * Constructs a new {@code HashMap} instance with the specified capacity.
141 public HashMap(in method in class:HashMap
176 public HashMap(int capacity, float loadFactor) { method in class:HashMap
197 public HashMap(Map<? extends K, ? extends V> map) { method in class:HashMap
[all...]

Completed in 2772 milliseconds