Lines Matching defs:Hashtable

37  * An instance of <code>Hashtable</code> has two parameters that affect its
52 * <tt>Hashtable</tt> operations, including <tt>get</tt> and <tt>put</tt>).<p>
58 * <tt>Hashtable</tt> will contain divided by its load factor. However,
61 * If many entries are to be made into a <code>Hashtable</code>,
69 * Hashtable<String, Integer> numbers
70 * = new Hashtable<String, Integer>();
84 * <em>fail-fast</em>: if the Hashtable is structurally modified at any time
90 * The Enumerations returned by Hashtable's keys and elements methods are
106 * implementations, {@code Hashtable} is synchronized. If a
108 * {@link HashMap} in place of {@code Hashtable}. If a thread-safe
111 * {@code Hashtable}.
118 * @see Hashtable#rehash()
125 public class Hashtable<K,V>
155 * The number of times this Hashtable has been structurally modified
157 * the Hashtable or otherwise modify its internal structure (e.g.,
159 * the Hashtable fail-fast. (See ConcurrentModificationException).
251 public Hashtable(int initialCapacity, float loadFactor) {
274 public Hashtable(int initialCapacity) {
282 public Hashtable() {
295 public Hashtable(Map<? extends K, ? extends V> t) {
610 Hashtable<K,V> t = (Hashtable<K,V>) super.clone();
628 * Returns a string representation of this <tt>Hashtable</tt> object
720 return Hashtable.this.remove(o) != null;
723 Hashtable.this.clear();
804 Hashtable.this.clear();
841 Hashtable.this.clear();
924 * Save the state of the Hashtable to a stream (i.e., serialize it).
926 * @serialData The <i>capacity</i> of the Hashtable (the length of the
928 * <i>size</i> of the Hashtable (the number of key-value
930 * for each key-value mapping represented by the Hashtable
966 * Reconstitute the Hashtable from a stream (i.e., deserialize it).
1036 * Hashtable bucket collision list entry
1105 Entry[] table = Hashtable.this.table;
1119 * Hashtable should have. If this expectation is violated, the iterator
1157 throw new NoSuchElementException("Hashtable Enumerator");
1175 throw new IllegalStateException("Hashtable Enumerator");
1179 synchronized(Hashtable.this) {
1180 Entry[] tab = Hashtable.this.table;