Class/Object

org.http4s

AttributeMap

Related Docs: object AttributeMap | package http4s

Permalink

final class AttributeMap extends AnyRef

An immutable map where an AttributeKey for a fixed type T can only be associated with values of type T. Because the equality of keys is based on reference, it is therefore possible for this map to contain mappings for keys with the same label and same types.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AttributeMap
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def ++(o: AttributeMap): AttributeMap

    Permalink

    Combines the mappings in o with the mappings in this map, with mappings in o taking precedence over existing mappings.

  4. def ++(o: Iterable[AttributeEntry[_]]): AttributeMap

    Permalink

    Adds the mappings in o to this map, with mappings in o taking precedence over existing mappings.

  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def apply[T](k: AttributeKey[T]): T

    Permalink

    Gets the value of type T associated with the key k.

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def contains[T](k: AttributeKey[T]): Boolean

    Permalink

    Returns true if this map contains a mapping for k.

  10. def entries: Iterable[AttributeEntry[_]]

    Permalink

    All mappings in this map.

    All mappings in this map. The AttributeEntry type preserves the typesafety of mappings, although the specific types are unknown.

  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def get[T](k: AttributeKey[T]): Option[T]

    Permalink

    Gets the value of type T associated with the key k or None if no value is associated.

  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. def isEmpty: Boolean

    Permalink

    true if there are no mappings in this map, false if there are.

  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. def keys: Iterable[AttributeKey[_]]

    Permalink

    All keys with defined mappings.

  20. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  21. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. def put[T](k: AttributeKey[T], value: T): AttributeMap

    Permalink

    Adds the mapping k -> value to this map, replacing any existing mapping for k.

  24. def remove[T](k: AttributeKey[T]): AttributeMap

    Permalink

    Returns this map without the mapping for k.

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped