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

/dalvik/libcore/luni/src/main/java/java/util/
H A DHashtable.java28 * Hashtable associates keys with values. Both keys and values cannot be null.
29 * The size of the Hashtable is the number of key/value pairs it contains. The
30 * capacity is the number of key/value pairs the Hashtable can hold. The load
31 * factor is a float value which determines how full the Hashtable gets before
32 * expanding the capacity. If the load factor of the Hashtable is exceeded, the
42 public class Hashtable<K, V> extends Dictionary<K, V> implements Map<K, V>, class in inherits:Dictionary,Map,Cloneable,Serializable
185 synchronized (Hashtable.this) {
258 * Constructs a new {@code Hashtable} using the default capacity and load
263 public Hashtable() { method in class:Hashtable
268 * Constructs a new {@code Hashtable} usin
275 public Hashtable(int capacity) { method in class:Hashtable
297 public Hashtable(int capacity, float loadFactor) { method in class:Hashtable
317 public Hashtable(Map<? extends K, ? extends V> map) { method in class:Hashtable
[all...]

Completed in 249 milliseconds