uk.co.bigbeeconsultants.http.header

Header

case class Header(name: String, value: String) extends Product with Serializable

Provides an HTTP header. Bear in mind that header names are case-insensitive, but you are advised to stick to the canonical capitalisation, which is as given by the HeaderName object values.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Header
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Header(name: String, value: String)

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. def =~=(other: Header): Boolean

    Header name equalsIgnoreCase other name.

  7. def =~=(other: HeaderName): Boolean

    Header name equalsIgnoreCase other name.

  8. def =~=(other: String): Boolean

    Header name equalsIgnoreCase other name.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. lazy val hasListValue: Boolean

  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. val name: String

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

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

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

    Definition Classes
    AnyRef
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def toAuthenticateValue: Option[AuthenticateValue]

    Converts the value to an optional authenticate value.

    Converts the value to an optional authenticate value.

    WWW-Authenticate

  22. def toCacheControlValue: Option[CacheControlValue]

    Converts the value to an optional cache-control value.

    Converts the value to an optional cache-control value.

    Cache-Control

  23. def toDate: Option[HttpDateTimeInstant]

    Converts the value to an optional HttpDateTimeInstant.

    Converts the value to an optional HttpDateTimeInstant.

    Date | Expires | If-Modified-Since | If-Unmodified-Since | Last-Modified

  24. def toEntityTag: Option[EntityTag]

    Converts the value to an optional single entity tag.

    Converts the value to an optional single entity tag.

    Etag

  25. def toEntityTagList: Option[EntityTagListValue]

    Converts the value to an optional list of entity tags.

    Converts the value to an optional list of entity tags.

    If-Match | If-None-Match

  26. def toListValue: CommaListValue

    Converts the value to a comma-separated list value.

    Converts the value to a comma-separated list value.

    Accept-Ranges | Allow | Cache-Control | Connection | Content-Encoding | Content-Language

  27. def toMediaType: Option[MediaType]

    Converts the value to a media type.

    Converts the value to a media type.

    Content-Type

  28. def toNumber: Option[Long]

    Converts the value to an optional number.

    Converts the value to an optional number.

    Age | Content-Length | Max-Forwards

  29. def toQualifiedValue: QualifiedValue

    Converts the value to a qualified value.

    Converts the value to a qualified value.

    Accept | Accept-Charset | Accept-Encoding | Accept-Language

  30. def toRangeValue: Option[RangeValue]

    Converts the value to an optional range value.

    Converts the value to an optional range value.

    Range

  31. def toString(): String

    Definition Classes
    Header → AnyRef → Any
  32. def toWarning: Option[WarningValue]

    Converts the value to an optional warning value.

    Converts the value to an optional warning value.

    Warning

  33. val value: String

  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped