Packages

trait Map[K, V] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Map
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def clear(): Unit
  2. abstract def containsKey(key: Any): Boolean
  3. abstract def containsValue(value: Any): Boolean
  4. abstract def entrySet(): Set[Entry[K, V]]
  5. abstract def get(key: Any): V
  6. abstract def isEmpty(): Boolean
  7. abstract def keySet(): Set[K]
  8. abstract def put(key: K, value: V): V
  9. abstract def putAll(m: Map[_ <: K, _ <: V]): Unit
  10. abstract def remove(key: Any): V
  11. abstract def size(): Int
  12. abstract def values(): Collection[V]

Concrete 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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. def compute(key: K, remappingFunction: BiFunction[_ >: K, _ >: V, _ <: V]): V
  7. def computeIfAbsent(key: K, mappingFunction: Function[_ >: K, _ <: V]): V
  8. def computeIfPresent(key: K, remappingFunction: BiFunction[_ >: K, _ >: V, _ <: V]): V
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def forEach(action: BiConsumer[_ >: K, _ >: V]): Unit
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getOrDefault(key: Any, defaultValue: V): V
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def merge(key: K, value: V, remappingFunction: BiFunction[_ >: V, _ >: V, _ <: V]): V
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def putIfAbsent(key: K, value: V): V
  22. def remove(key: Any, value: Any): Boolean
  23. def replace(key: K, value: V): V
  24. def replace(key: K, oldValue: V, newValue: V): Boolean
  25. def replaceAll(function: BiFunction[_ >: K, _ >: V, _ <: V]): Unit
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. 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]
    Annotations
    @alwaysinline()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped