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

/libcore/luni/src/main/java/java/util/
H A DHashtable.java28 * Hashtable is a synchronized implementation of {@link Map}. All optional operations are supported.
37 public class Hashtable<K, V> extends Dictionary<K, V> class in inherits:Dictionary,Map,Cloneable,Serializable
40 * Min capacity (other than zero) for a Hashtable. Must be a power of two
46 * Max capacity for a Hashtable. Must be a power of two >= MINIMUM_CAPACITY.
101 * Constructs a new {@code Hashtable} using the default capacity and load
105 public Hashtable() { method in class:Hashtable
111 * Constructs a new {@code Hashtable} using the specified capacity and the
117 public Hashtable(int capacity) { method in class:Hashtable
141 * Constructs a new {@code Hashtable} using the specified capacity and load
149 public Hashtable(in method in class:Hashtable
170 public Hashtable(Map<? extends K, ? extends V> map) { method in class:Hashtable
[all...]

Completed in 54 milliseconds