object ContentType

Source
ContentType.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContentType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Binary extends ContentType

    Represents a content-type which we know not to contain text (will never have a charset)

  2. trait NonBinary extends ContentType

    Represents a content-type which we know to contain text, and has a specified charset.

  3. trait WithCharset extends NonBinary

    Represents a content-type which we know to contain text, and the charset is known at runtime.

  4. trait WithFixedCharset extends NonBinary

    Represents a content-type which we know to contain text, where the charset always has the same predefined value.

  5. trait WithMissingCharset extends ContentType

    Represents a content-type which we know to contain text, and would be better off having a charset, but the client hasn't provided that.

    Represents a content-type which we know to contain text, and would be better off having a charset, but the client hasn't provided that. For example, "text/xml" without a charset parameter.