final case class Accept-Charset(values: NonEmptyList[CharsetRange]) extends Product with Serializable

The "Accept-Charset" header field can be sent by a user agent to
indicate what charsets are acceptable in textual response content.
This field allows user agents capable of understanding more

From [http//tools.ietf.org/html/rfc7231#section-5.3.3 RFC-7231].

Source
Accept-Charset.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Accept-Charset
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Accept-Charset(values: NonEmptyList[CharsetRange])

Value Members

  1. def map(f: (CharsetRange) ⇒ CharsetRange): Accept-Charset
  2. def qValue(charset: Charset): QValue
  3. def satisfiedBy(charset: Charset): Boolean
  4. val values: NonEmptyList[CharsetRange]

Deprecated Value Members

  1. def isSatisfiedBy(charset: Charset): Boolean
    Annotations
    @deprecated
    Deprecated

    (Since version 0.16.1) Use satisfiedBy(charset)