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

/libcore/ojluni/src/main/java/java/util/
H A DHashtable.java42 * An instance of <code>Hashtable</code> has two parameters that affect its
57 * <tt>Hashtable</tt> operations, including <tt>get</tt> and <tt>put</tt>).<p>
63 * <tt>Hashtable</tt> will contain divided by its load factor. However,
66 * If many entries are to be made into a <code>Hashtable</code>,
74 * Hashtable<String, Integer> numbers
75 * = new Hashtable<String, Integer>();
89 * <em>fail-fast</em>: if the Hashtable is structurally modified at any time
95 * The Enumerations returned by Hashtable's keys and elements methods are
111 * implementations, {@code Hashtable} is synchronized. If a
113 * {@link HashMap} in place of {@code Hashtable}
130 public class Hashtable<K,V> class in inherits:Dictionary,Map,Cloneable,java.io.Serializable
180 public Hashtable(int initialCapacity, float loadFactor) { method in class:Hashtable
204 public Hashtable(int initialCapacity) { method in class:Hashtable
212 public Hashtable() { method in class:Hashtable
225 public Hashtable(Map<? extends K, ? extends V> t) { method in class:Hashtable
[all...]

Completed in 590 milliseconds