Uses of Class
javax.ws.rs.core.MediaType
Packages that use MediaType
Package
Description
Low-level interfaces and annotations used to create RESTful service
resources.
APIs that provide extensions to the types supported by the JAX-RS API.
-
Uses of MediaType in javax.ws.rs.core
Fields in javax.ws.rs.core declared as MediaTypeModifier and TypeFieldDescriptionstatic final MediaTypeMediaType.APPLICATION_ATOM_XML_TYPE"application/atom+xml"static final MediaTypeMediaType.APPLICATION_FORM_URLENCODED_TYPE"application/x-www-form-urlencoded"static final MediaTypeMediaType.APPLICATION_JSON_TYPE"application/json"static final MediaTypeMediaType.APPLICATION_OCTET_STREAM_TYPE"application/octet-stream"static final MediaTypeMediaType.APPLICATION_SVG_XML_TYPE"application/svg+xml"static final MediaTypeMediaType.APPLICATION_XHTML_XML_TYPE"application/xhtml+xml"static final MediaTypeMediaType.APPLICATION_XML_TYPE"application/xml"private MediaTypeVariant.mediaTypestatic final MediaTypeMediaType.MULTIPART_FORM_DATA_TYPE"multipart/form-data"static final MediaTypeMediaType.TEXT_HTML_TYPE"text/html"static final MediaTypeMediaType.TEXT_PLAIN_TYPE"text/plain"static final MediaTypeMediaType.TEXT_XML_TYPE"text/xml"static final MediaTypeMediaType.WILDCARD_TYPE"*/*"Fields in javax.ws.rs.core with type parameters of type MediaTypeModifier and TypeFieldDescriptionprivate static final RuntimeDelegate.HeaderDelegate<MediaType> MediaType.delegateMethods in javax.ws.rs.core that return MediaTypeModifier and TypeMethodDescriptionHttpHeaders.getMediaType()Get the media type of the request entityVariant.getMediaType()Get the media type of the variantstatic MediaTypeCreates a new instance of MediaType by parsing the supplied string.Methods in javax.ws.rs.core that return types with arguments of type MediaTypeModifier and TypeMethodDescriptionHttpHeaders.getAcceptableMediaTypes()Get a list of media types that are acceptable for the response.Methods in javax.ws.rs.core with parameters of type MediaTypeModifier and TypeMethodDescriptionbooleanMediaType.isCompatible(MediaType other) Check if this media type is compatible with another media type.static Variant.VariantListBuilderVariant.mediaTypes(MediaType... mediaTypes) Create aVariant.VariantListBuilderinitialized with a set of supported media types.abstract Variant.VariantListBuilderVariant.VariantListBuilder.mediaTypes(MediaType... mediaTypes) Set the media type[s] for this variant.static Response.ResponseBuilderCreate a new ResponseBuilder that contains a representation.abstract Response.ResponseBuilderSet the response media type on the ResponseBuilder.Constructors in javax.ws.rs.core with parameters of type MediaType -
Uses of MediaType in javax.ws.rs.ext
Methods in javax.ws.rs.ext with parameters of type MediaTypeModifier and TypeMethodDescription<T> ContextResolver<T> Providers.getContextResolver(Class<T> contextType, MediaType mediaType) Get a context resolver for a particular type of context and media type.<T> MessageBodyReader<T> Providers.getMessageBodyReader(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType) Get a message body reader that matches a set of criteria.<T> MessageBodyWriter<T> Providers.getMessageBodyWriter(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType) Get a message body writer that matches a set of criteria.longMessageBodyWriter.getSize(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) Called beforewriteToto ascertain the length in bytes of the serialized form oft.booleanMessageBodyReader.isReadable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) Ascertain if the MessageBodyReader can produce an instance of a particular type.booleanMessageBodyWriter.isWriteable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) Ascertain if the MessageBodyWriter supports a particular type.MessageBodyReader.readFrom(Class<T> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream) Read a type from theInputStream.voidMessageBodyWriter.writeTo(T t, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) Write a type to an HTTP response.