Package jakarta.ws.rs.core
Class Variant
java.lang.Object
jakarta.ws.rs.core.Variant
Abstraction for a resource representation variant.
 Contains information about media type, language and encoding of the resource representation.
- Since:
- 1.0
- Author:
- Paul Sandoz, Marc Hadley
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic classA builder for a list of representation variants.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic Variant.VariantListBuilderCreate aVariant.VariantListBuilderinitialized with a set of supported encodings.booleanCompares obj to this variant to see if they are the same considering all property values.Get the encoding of the variant.Get the language of the variant.Get the string representation of the variant language, ornullif no language has been set.Get the media type of the variant.inthashCode()Generate hash code from variant properties.static Variant.VariantListBuilderCreate aVariant.VariantListBuilderinitialized with a set of supported languages.static Variant.VariantListBuildermediaTypes(MediaType... mediaTypes) Create aVariant.VariantListBuilderinitialized with a set of supported media types.toString()
- 
Constructor Details- 
VariantCreate a new instance of Variant.- Parameters:
- mediaType- the media type of the variant - may be- null.
- language- the language of the variant (two-letter ISO-639 code); may be- null.
- encoding- the content encoding of the variant - may be- null.
- Throws:
- IllegalArgumentException- if all the parameters are- null.
- Since:
- 2.0
 
- 
VariantCreate a new instance of Variant.- Parameters:
- mediaType- the media type of the variant - may be- null.
- language- the language of the variant (two-letter ISO-639 code); may be- null.
- country- uppercase two-letter ISO-3166 language code of the variant; may be- nullprovided- languageis- nulltoo.
- encoding- the content encoding of the variant - may be- null.
- Throws:
- IllegalArgumentException- if all the parameters are- null.
- Since:
- 2.0
 
- 
Variantpublic Variant(MediaType mediaType, String language, String country, String languageVariant, String encoding) Create a new instance of Variant.- Parameters:
- mediaType- the media type of the variant - may be- null.
- language- the language of the variant (two-letter ISO-639 code); may be- null.
- country- uppercase two-letter ISO-3166 language code of the variant; may be- nullprovided- languageis- nulltoo.
- languageVariant- vendor and browser specific language code of the variant (see also- Localeclass description); may be- nullprovided- languageand- countryare- nulltoo.
- encoding- the content encoding of the variant - may be- null.
- Throws:
- IllegalArgumentException- if all the parameters are- null.
- Since:
- 2.0
 
- 
VariantCreate a new instance of Variant.- Parameters:
- mediaType- the media type of the variant - may be- null.
- language- the language of the variant - may be- null.
- encoding- the content encoding of the variant - may be- null.
- Throws:
- IllegalArgumentException- if all the parameters are- null.
 
 
- 
- 
Method Details- 
getLanguageGet the language of the variant.- Returns:
- the language or nullif none set.
 
- 
getLanguageStringGet the string representation of the variant language, ornullif no language has been set.- Returns:
- the string representing variant language or nullif none set.
- Since:
- 2.0
 
- 
getMediaTypeGet the media type of the variant.- Returns:
- the media type or nullif none set.
 
- 
getEncodingGet the encoding of the variant.- Returns:
- the encoding or nullif none set.
 
- 
mediaTypesCreate aVariant.VariantListBuilderinitialized with a set of supported media types.- Parameters:
- mediaTypes- the available mediaTypes. If specific char-sets are supported they should be included as parameters of the respective media type.
- Returns:
- the initialized builder.
- Throws:
- IllegalArgumentException- if mediaTypes is null or contains no elements.
 
- 
languagesCreate aVariant.VariantListBuilderinitialized with a set of supported languages.- Parameters:
- languages- the available languages.
- Returns:
- the initialized builder.
- Throws:
- IllegalArgumentException- if languages is null or contains no elements.
 
- 
encodingsCreate aVariant.VariantListBuilderinitialized with a set of supported encodings.- Parameters:
- encodings- the available encodings.
- Returns:
- the initialized builder.
- Throws:
- IllegalArgumentException- if encodings is null or contains no elements.
 
- 
hashCodepublic int hashCode()Generate hash code from variant properties.
- 
equalsCompares obj to this variant to see if they are the same considering all property values.
- 
toString
 
-