scalaz.http.request

RequestHeader

object RequestHeader extends RequestHeaders

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

Linear Supertypes
RequestHeaders, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. RequestHeader
  2. RequestHeaders
  3. AnyRef
  4. Any
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

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

    Attributes
    final
    Definition Classes
    Any
  6. object Entity extends AnyRef

    For deconstructing request headers into entity headers.

  7. object General extends AnyRef

    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.

    Attributes
    implicit
    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.

    Attributes
    implicit
    Definition Classes
    RequestHeaders
  10. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  11. def clone (): AnyRef

    Attributes
    protected[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.

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

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

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

    Attributes
    protected[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.

    Attributes
    implicit
    Definition Classes
    RequestHeaders
  17. def getClass (): java.lang.Class[_]

    Attributes
    final
    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. def isInstanceOf [T0] : Boolean

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

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

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

    Attributes
    final
    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. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  26. def toString (): String

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

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

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

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from RequestHeaders

Inherited from AnyRef

Inherited from Any