object MediaType
Ordering
- Alphabetic
- By Inheritance
Inherited
- MediaType
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed abstract class Binary extends MediaType with javadsl.model.MediaType.Binary
- Annotations
- @DoNotInherit()
- sealed class Compressibility extends javadsl.model.MediaType.Compressibility
- final class Multipart extends Binary with javadsl.model.MediaType.Multipart
- sealed abstract class NonBinary extends MediaType with javadsl.model.MediaType.NonBinary
- Annotations
- @DoNotInherit()
- sealed abstract class NonMultipartWithOpenCharset extends WithOpenCharset
- Annotations
- @DoNotInherit()
- sealed abstract class WithFixedCharset extends NonBinary with javadsl.model.MediaType.WithFixedCharset
- Annotations
- @DoNotInherit()
- sealed abstract class WithOpenCharset extends NonBinary with javadsl.model.MediaType.WithOpenCharset
- Annotations
- @DoNotInherit()
Value Members
- def applicationBinary(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- def applicationWithFixedCharset(subType: String, charset: HttpCharset, fileExtensions: String*): WithFixedCharset
- def applicationWithOpenCharset(subType: String, fileExtensions: String*): WithOpenCharset
- def audio(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- def custom(value: String, binary: Boolean, comp: Compressibility = Compressible, fileExtensions: List[String] = Nil): MediaType
- def customBinary(mainType: String, subType: String, comp: Compressibility, fileExtensions: List[String] = Nil, params: Map[String, String] = Map.empty, allowArbitrarySubtypes: Boolean = false): Binary
- def customMultipart(subType: String, params: Map[String, String]): Multipart
- def customWithFixedCharset(mainType: String, subType: String, charset: HttpCharset, fileExtensions: List[String] = Nil, params: Map[String, String] = Map.empty, allowArbitrarySubtypes: Boolean = false): WithFixedCharset
- def customWithOpenCharset(mainType: String, subType: String, fileExtensions: List[String] = Nil, params: Map[String, String] = Map.empty, allowArbitrarySubtypes: Boolean = false): WithOpenCharset
- def font(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- def image(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- def message(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- def parse(value: String): Either[List[ErrorInfo], MediaType]
Tries to parse a
MediaType
value from the given String.Tries to parse a
MediaType
value from the given String. ReturnsRight(mediaType)
if successful andLeft(errors)
otherwise. - def text(subType: String, fileExtensions: String*): WithOpenCharset
- def textWithFixedCharset(subType: String, charset: HttpCharset, fileExtensions: String*): WithFixedCharset
- def unapply(mediaType: MediaType): Option[String]
- def video(subType: String, comp: Compressibility, fileExtensions: String*): Binary
- case object Compressible extends Compressibility with Product with Serializable
- case object Gzipped extends Compressibility with Product with Serializable
- case object NotCompressible extends Compressibility with Product with Serializable