c

akka.http.javadsl.model

ContentTypeRange

abstract class ContentTypeRange extends AnyRef

A data structure that combines an acceptable media range and an acceptable charset range into one structure to be used with unmarshalling.

Source
ContentTypeRange.java
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ContentTypeRange
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ContentTypeRange()

Abstract Value Members

  1. abstract def charsetRange(): HttpCharsetRange
  2. abstract def matches(contentType: ContentType): Boolean

    Returns true if this range includes the given content type.

  3. abstract def mediaRange(): MediaRange