scalaz.http.request

RequestHeader

object RequestHeader extends RequestHeaders

HTTP request headers. RFC 2616 Section 14 Header Field Definitions.

Source
RequestHeader.scala
Linear Supertypes
RequestHeaders, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RequestHeader
  2. RequestHeaders
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object Entity

    For deconstructing request headers into entity headers.

  7. object General

    For deconstructing request headers into general headers.

  8. implicit def ListRequestHeader: (List[Char]) ⇒ Option[RequestHeader]

    Converts the given list of characters to a request header.

    Converts the given list of characters to a request header. If the string is a known request header, then it is used. If not, then it if it is a known general header, then it is used. If not then it is an entity header.

    Definition Classes
    RequestHeaders
  9. implicit def StringRequestHeader(s: String): Option[RequestHeader]

    Converts the given string to a request header.

    Converts the given string to a request header. If the string is a known request header, then it is used. If not, then it if it is a known general header, then it is used. If not then it is an entity header.

    Definition Classes
    RequestHeaders
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. implicit def entityToRequest(eh: EntityHeader): RequestHeader

    Converts the given entity header into a request header.

    Converts the given entity header into a request header.

    Definition Classes
    RequestHeaders
  13. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  16. implicit def generalToRequest(gh: GeneralHeader): RequestHeader

    Converts the given general header into a request header.

    Converts the given general header into a request header.

    Definition Classes
    RequestHeaders
  17. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  19. val headers: List[(String, Product with Serializable with RequestHeader)]

    A list of known headers.

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. def requestHeaderValue(cs: List[Char]): Option[(RequestHeader, NonEmptyList[Char])]

    Converts a list of characters of the form "abc:def" into a potential request header and non-empty value split at the colon (:).

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

    Definition Classes
    AnyRef
  26. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from RequestHeaders

Inherited from AnyRef

Inherited from Any

Ungrouped