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

/dalvik/libcore/luni/src/main/java/java/util/
H A DHashtable.java32 * Hashtable is a synchronized implementation of {@link Map}. All optional operations are supported.
41 public class Hashtable<K, V> extends Dictionary<K, V> class in inherits:Dictionary,Map,Cloneable,Serializable
44 * Min capacity (other than zero) for a Hashtable. Must be a power of two
50 * Max capacity for a Hashtable. Must be a power of two >= MINIMUM_CAPACITY.
105 * Constructs a new {@code Hashtable} using the default capacity and load
109 public Hashtable() { method in class:Hashtable
115 * Constructs a new {@code Hashtable} using the specified capacity and the
121 public Hashtable(int capacity) { method in class:Hashtable
145 * Constructs a new {@code Hashtable} using the specified capacity and load
153 public Hashtable(in method in class:Hashtable
174 public Hashtable(Map<? extends K, ? extends V> map) { method in class:Hashtable
[all...]

Completed in 75 milliseconds