Packages

c

java.util

Hashtable

class Hashtable[K, V] extends Dictionary[K, V] with Map[K, V] with Cloneable with Serializable

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Hashtable
  2. Serializable
  3. Cloneable
  4. Map
  5. Dictionary
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Hashtable(t: Map[_ <: K, _ <: V])
  2. new Hashtable(initialCapacity: Int, loadFactor: Float)
  3. new Hashtable(initialCapacity: Int)
  4. new Hashtable()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clear(): Unit
    Definition Classes
    HashtableMap
  6. def clone(): AnyRef
    Definition Classes
    Hashtable → AnyRef
  7. def compute(key: K, remappingFunction: BiFunction[_ >: K, _ >: V, _ <: V]): V
    Definition Classes
    Map
  8. def computeIfAbsent(key: K, mappingFunction: Function[_ >: K, _ <: V]): V
    Definition Classes
    Map
  9. def computeIfPresent(key: K, remappingFunction: BiFunction[_ >: K, _ >: V, _ <: V]): V
    Definition Classes
    Map
  10. def contains(value: Any): Boolean
  11. def containsKey(key: Any): Boolean
    Definition Classes
    HashtableMap
  12. def containsValue(value: Any): Boolean
    Definition Classes
    HashtableMap
  13. def elements(): Enumeration[V]
    Definition Classes
    HashtableDictionary
  14. def entrySet(): Set[Entry[K, V]]
    Definition Classes
    HashtableMap
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def forEach(action: BiConsumer[_ >: K, _ >: V]): Unit
    Definition Classes
    Map
  19. def get(key: Any): V
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getOrDefault(key: Any, defaultValue: V): V
    Definition Classes
    Map
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def isEmpty(): Boolean
    Definition Classes
    HashtableMapDictionary
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def keySet(): Set[K]
    Definition Classes
    HashtableMap
  26. def keys(): Enumeration[K]
    Definition Classes
    HashtableDictionary
  27. def merge(key: K, value: V, remappingFunction: BiFunction[_ >: V, _ >: V, _ <: V]): V
    Definition Classes
    Map
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def put(key: K, value: V): V
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  32. def putAll(m: Map[_ <: K, _ <: V]): Unit
    Definition Classes
    HashtableMap
  33. def putIfAbsent(key: K, value: V): V
    Definition Classes
    Map
  34. def remove(key: Any): V
    Definition Classes
    HashtableMapDictionary
    Annotations
    @throws(scala.this.throws.<init>$default$1[NullPointerException])
  35. def remove(key: Any, value: Any): Boolean
    Definition Classes
    Map
  36. def replace(key: K, value: V): V
    Definition Classes
    Map
  37. def replace(key: K, oldValue: V, newValue: V): Boolean
    Definition Classes
    Map
  38. def replaceAll(function: BiFunction[_ >: K, _ >: V, _ <: V]): Unit
    Definition Classes
    Map
  39. def size(): Int
    Definition Classes
    HashtableMapDictionary
  40. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  41. def toString(): String
    Definition Classes
    Hashtable → AnyRef → Any
  42. def usingEntry[T](entry: Entry[K, V])(apply: (K, V) => T): T

    Helper method used to detect concurrent modification exception when accessing map entires.

    Helper method used to detect concurrent modification exception when accessing map entires. IllegalStateException means the entry is no longer available (remove)

    Attributes
    protected[util]
    Definition Classes
    Map
    Annotations
    @alwaysinline()
  43. def values(): Collection[V]
    Definition Classes
    HashtableMap
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Serializable

Inherited from Cloneable

Inherited from Map[K, V]

Inherited from Dictionary[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped