Package jakarta.ws.rs.core
Class Variant
- java.lang.Object
- 
- jakarta.ws.rs.core.Variant
 
- 
 public class Variant extends Object 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 Classes Modifier and Type Class Description static classVariant.VariantListBuilderA builder for a list of representation variants.
 - 
Constructor SummaryConstructors Constructor Description Variant(MediaType mediaType, String language, String encoding)Create a new instance of Variant.Variant(MediaType mediaType, String language, String country, String encoding)Create a new instance of Variant.Variant(MediaType mediaType, String language, String country, String languageVariant, String encoding)Create a new instance of Variant.Variant(MediaType mediaType, Locale language, String encoding)Create a new instance of Variant.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Variant.VariantListBuilderencodings(String... encodings)Create aVariant.VariantListBuilderinitialized with a set of supported encodings.booleanequals(Object obj)Compares obj to this variant to see if they are the same considering all property values.StringgetEncoding()Get the encoding of the variant.LocalegetLanguage()Get the language of the variant.StringgetLanguageString()Get the string representation of the variant language, ornullif no language has been set.MediaTypegetMediaType()Get the media type of the variant.inthashCode()Generate hash code from variant properties.static Variant.VariantListBuilderlanguages(Locale... languages)Create aVariant.VariantListBuilderinitialized with a set of supported languages.static Variant.VariantListBuildermediaTypes(MediaType... mediaTypes)Create aVariant.VariantListBuilderinitialized with a set of supported media types.StringtoString()
 
- 
- 
- 
Constructor Detail- 
Variantpublic Variant(MediaType mediaType, String language, 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.
- 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 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.
- 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
 
 - 
Variantpublic Variant(MediaType mediaType, Locale language, 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 - may be- null.
- encoding- the content encoding of the variant - may be- null.
- Throws:
- IllegalArgumentException- if all the parameters are- null.
 
 
- 
 - 
Method Detail- 
getLanguagepublic Locale getLanguage() Get the language of the variant.- Returns:
- the language or nullif none set.
 
 - 
getLanguageStringpublic String getLanguageString() Get 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
 
 - 
getMediaTypepublic MediaType getMediaType() Get the media type of the variant.- Returns:
- the media type or nullif none set.
 
 - 
getEncodingpublic String getEncoding() Get the encoding of the variant.- Returns:
- the encoding or nullif none set.
 
 - 
mediaTypespublic static Variant.VariantListBuilder mediaTypes(MediaType... mediaTypes) Create 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.
 
 - 
languagespublic static Variant.VariantListBuilder languages(Locale... languages) Create 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.
 
 - 
encodingspublic static Variant.VariantListBuilder encodings(String... encodings) Create 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.
 - 
equalspublic boolean equals(Object obj) Compares obj to this variant to see if they are the same considering all property values.
 
- 
 
-