Uses of Class
javax.ws.rs.core.MediaType

Packages that use MediaType
javax.ws.rs.client The JAX-RS client API 
javax.ws.rs.container Container-specific JAX-RS API. 
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. 
 

Uses of MediaType in javax.ws.rs.client
 

Methods in javax.ws.rs.client that return MediaType
 MediaType Entity.getMediaType()
          Get entity media type.
 MediaType ClientResponseContext.getMediaType()
          Get the media type of the entity.
 MediaType ClientRequestContext.getMediaType()
          Get the media type of the entity.
 

Methods in javax.ws.rs.client that return types with arguments of type MediaType
 java.util.List<MediaType> ClientRequestContext.getAcceptableMediaTypes()
          Get a list of media types that are acceptable for the response.
 

Methods in javax.ws.rs.client with parameters of type MediaType
static
<T> Entity<T>
Entity.entity(T entity, MediaType mediaType)
          Create an entity using a supplied content media type.
static
<T> Entity<T>
Entity.entity(T entity, MediaType mediaType, java.lang.annotation.Annotation[] annotations)
          Create an entity using a supplied content media type.
 Invocation.Builder WebTarget.request(MediaType... acceptedResponseTypes)
          Start building a request to the targeted web resource and define the accepted response media types.
 void ClientRequestContext.setEntity(java.lang.Object entity, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Set a new response message entity.
 

Uses of MediaType in javax.ws.rs.container
 

Methods in javax.ws.rs.container that return MediaType
 MediaType ContainerResponseContext.getMediaType()
          Get the media type of the entity.
 MediaType ContainerRequestContext.getMediaType()
          Get the media type of the entity.
 

Methods in javax.ws.rs.container that return types with arguments of type MediaType
 java.util.List<MediaType> ContainerRequestContext.getAcceptableMediaTypes()
          Get a list of media types that are acceptable for the response.
 

Methods in javax.ws.rs.container with parameters of type MediaType
 void ContainerResponseContext.setEntity(java.lang.Object entity, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Set a new response message entity.
 

Uses of MediaType in javax.ws.rs.core
 

Fields in javax.ws.rs.core declared as MediaType
static MediaType MediaType.APPLICATION_ATOM_XML_TYPE
          A MediaType constant representing ""application/atom+xml"" media type.
static MediaType MediaType.APPLICATION_FORM_URLENCODED_TYPE
          A MediaType constant representing ""application/x-www-form-urlencoded"" media type.
static MediaType MediaType.APPLICATION_JSON_TYPE
          A MediaType constant representing ""application/json"" media type.
static MediaType MediaType.APPLICATION_OCTET_STREAM_TYPE
          A MediaType constant representing ""application/octet-stream"" media type.
static MediaType MediaType.APPLICATION_SVG_XML_TYPE
          A MediaType constant representing ""application/svg+xml"" media type.
static MediaType MediaType.APPLICATION_XHTML_XML_TYPE
          A MediaType constant representing ""application/xhtml+xml"" media type.
static MediaType MediaType.APPLICATION_XML_TYPE
          A MediaType constant representing ""application/xml"" media type.
static MediaType MediaType.MULTIPART_FORM_DATA_TYPE
          A MediaType constant representing ""multipart/form-data"" media type.
static MediaType MediaType.TEXT_HTML_TYPE
          A MediaType constant representing ""text/html"" media type.
static MediaType MediaType.TEXT_PLAIN_TYPE
          A MediaType constant representing ""text/plain"" media type.
static MediaType MediaType.TEXT_XML_TYPE
          A MediaType constant representing ""text/xml"" media type.
static MediaType MediaType.WILDCARD_TYPE
          A MediaType constant representing wildcard ""*/*"" media type.
 

Methods in javax.ws.rs.core that return MediaType
 MediaType Variant.getMediaType()
          Get the media type of the variant.
abstract  MediaType Response.getMediaType()
          Get the media type of the message entity.
 MediaType HttpHeaders.getMediaType()
          Get the media type of the request entity.
static MediaType MediaType.valueOf(java.lang.String type)
          Creates a new instance of MediaType by parsing the supplied string.
 MediaType MediaType.withCharset(java.lang.String charset)
          Create a new MediaType instance with the same type, subtype and parameters copied from the original instance and the supplied ""charset"" parameter.
 

Methods in javax.ws.rs.core that return types with arguments of type MediaType
 java.util.List<MediaType> HttpHeaders.getAcceptableMediaTypes()
          Get a list of media types that are acceptable for the response.
 

Methods in javax.ws.rs.core with parameters of type MediaType
 boolean MediaType.isCompatible(MediaType other)
          Check if this media type is compatible with another media type.
static Variant.VariantListBuilder Variant.mediaTypes(MediaType... mediaTypes)
          Create a Variant.VariantListBuilder initialized with a set of supported media types.
abstract  Variant.VariantListBuilder Variant.VariantListBuilder.mediaTypes(MediaType... mediaTypes)
          Set the media type(s) for this variant.
static Response.ResponseBuilder Response.ok(java.lang.Object entity, MediaType type)
          Create a new ResponseBuilder that contains a representation.
abstract  Response.ResponseBuilder Response.ResponseBuilder.type(MediaType type)
          Set the message entity media type.
 

Constructors in javax.ws.rs.core with parameters of type MediaType
Variant(MediaType mediaType, java.util.Locale language, java.lang.String encoding)
          Create a new instance of Variant.
Variant(MediaType mediaType, java.lang.String language, java.lang.String encoding)
          Create a new instance of Variant.
Variant(MediaType mediaType, java.lang.String language, java.lang.String country, java.lang.String encoding)
          Create a new instance of Variant.
Variant(MediaType mediaType, java.lang.String language, java.lang.String country, java.lang.String languageVariant, java.lang.String encoding)
          Create a new instance of Variant.
 

Uses of MediaType in javax.ws.rs.ext
 

Methods in javax.ws.rs.ext that return MediaType
 MediaType InterceptorContext.getMediaType()
          Get media type of HTTP entity.
 

Methods in javax.ws.rs.ext with parameters of type MediaType
<T> ContextResolver<T>
Providers.getContextResolver(java.lang.Class<T> contextType, MediaType mediaType)
          Get a context resolver for a particular type of context and media type.
<T> MessageBodyReader<T>
Providers.getMessageBodyReader(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Get a message body reader that matches a set of criteria.
<T> MessageBodyWriter<T>
Providers.getMessageBodyWriter(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Get a message body writer that matches a set of criteria.
 long MessageBodyWriter.getSize(T t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Called before writeTo to ascertain the length in bytes of the serialized form of t.
 boolean MessageBodyReader.isReadable(java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Ascertain if the MessageBodyReader can produce an instance of a particular type.
 boolean MessageBodyWriter.isWriteable(java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType)
          Ascertain if the MessageBodyWriter supports a particular type.
 T MessageBodyReader.readFrom(java.lang.Class<T> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.String> httpHeaders, java.io.InputStream entityStream)
          Read a type from the InputStream.
 void InterceptorContext.setMediaType(MediaType mediaType)
          Update media type of HTTP entity.
 void MessageBodyWriter.writeTo(T t, java.lang.Class<?> type, java.lang.reflect.Type genericType, java.lang.annotation.Annotation[] annotations, MediaType mediaType, MultivaluedMap<java.lang.String,java.lang.Object> httpHeaders, java.io.OutputStream entityStream)
          Write a type to an HTTP message.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.