Uses of Class
org.restlet.data.CharacterSet
-
Packages that use CharacterSet Package Description org.restlet.data Information exchanged by components.org.restlet.representation Common representation data elements.org.restlet.service Services used by applications and components.org.restlet.util Various utility classes. -
-
Uses of CharacterSet in org.restlet.data
Fields in org.restlet.data declared as CharacterSet Modifier and Type Field Description static CharacterSet
CharacterSet. ALL
All character sets acceptable.static CharacterSet
CharacterSet. DEFAULT
The default character set of the JVM.static CharacterSet
CharacterSet. ISO_8859_1
The ISO/IEC 8859-1 (Latin 1) character set.static CharacterSet
CharacterSet. ISO_8859_10
The ISO/IEC 8859-10 (Latin 6) character set.static CharacterSet
CharacterSet. ISO_8859_2
The ISO/IEC 8859-2 (Latin 2) character set.static CharacterSet
CharacterSet. ISO_8859_3
The ISO/IEC 8859-3 (Latin 3) character set.static CharacterSet
CharacterSet. ISO_8859_4
The ISO/IEC 8859-4 (Latin 4) character set.static CharacterSet
CharacterSet. ISO_8859_5
The ISO/IEC 8859-5 (Cyrillic) character set.static CharacterSet
CharacterSet. ISO_8859_6
The ISO/IEC 8859-6 (Arabic) character set.static CharacterSet
CharacterSet. ISO_8859_7
The ISO/IEC 8859-7 (Greek) character set.static CharacterSet
CharacterSet. ISO_8859_8
The ISO/IEC 8859-8 (Hebrew) character set.static CharacterSet
CharacterSet. ISO_8859_9
The ISO/IEC 8859-9 (Latin 5) character set.static CharacterSet
CharacterSet. MACINTOSH
The Macintosh ("Mac OS Roman") character set.static CharacterSet
CharacterSet. US_ASCII
The US-ASCII character set.static CharacterSet
CharacterSet. UTF_16
The UTF-16 character set.static CharacterSet
CharacterSet. UTF_8
The UTF-8 character set.static CharacterSet
CharacterSet. WINDOWS_1252
The Windows-1252 ('ANSI') character set.Methods in org.restlet.data that return CharacterSet Modifier and Type Method Description CharacterSet
ClientInfo. getPreferredCharacterSet(java.util.List<CharacterSet> supported)
Returns the preferred character set among a list of supported ones, based on the client preferences.static CharacterSet
CharacterSet. valueOf(java.lang.String name)
Returns the character set associated to a name.Methods in org.restlet.data that return types with arguments of type CharacterSet Modifier and Type Method Description java.util.List<Preference<CharacterSet>>
ClientInfo. getAcceptedCharacterSets()
Returns the modifiable list of character set preferences.Methods in org.restlet.data with parameters of type CharacterSet Modifier and Type Method Description static java.lang.String
Reference. decode(java.lang.String toDecode, CharacterSet characterSet)
Decodes a given string using the standard URI encoding mechanism.java.lang.String
Form. encode(CharacterSet characterSet)
URL encodes the form.java.lang.String
Form. encode(CharacterSet characterSet, char separator)
URL encodes the form.void
Parameter. encode(java.lang.Appendable buffer, CharacterSet characterSet)
Encodes the parameter into the target buffer.java.lang.String
Parameter. encode(CharacterSet characterSet)
Encodes the parameter as a string.static java.lang.String
Reference. encode(java.lang.String toEncode, boolean queryString, CharacterSet characterSet)
Encodes a given string using the standard URI encoding mechanism and the UTF-8 character set.static java.lang.String
Reference. encode(java.lang.String toEncode, CharacterSet characterSet)
Encodes a given string using the standard URI encoding mechanism.Form
Reference. getMatrixAsForm(CharacterSet characterSet)
Returns the optional matrix as a form submission.java.lang.String
Form. getMatrixString(CharacterSet characterSet)
Formats the form as a query string.Form
Reference. getQueryAsForm(CharacterSet characterSet)
Returns the optional query component as a form submission.java.lang.String
Form. getQueryString(CharacterSet characterSet)
Formats the form as a query string.Representation
Form. getWebRepresentation(CharacterSet characterSet)
Returns the form as a Web representation (MediaType.APPLICATION_WWW_FORM).Method parameters in org.restlet.data with type arguments of type CharacterSet Modifier and Type Method Description CharacterSet
ClientInfo. getPreferredCharacterSet(java.util.List<CharacterSet> supported)
Returns the preferred character set among a list of supported ones, based on the client preferences.void
ClientInfo. setAcceptedCharacterSets(java.util.List<Preference<CharacterSet>> acceptedCharacterSets)
Sets the character set preferences.Constructors in org.restlet.data with parameters of type CharacterSet Constructor Description Form(java.lang.String queryString, CharacterSet characterSet)
Constructor.Form(java.lang.String queryString, CharacterSet characterSet, boolean decode)
Constructor.Form(java.lang.String parametersString, CharacterSet characterSet, char separator)
Constructor.Form(java.lang.String parametersString, CharacterSet characterSet, char separator, boolean decode)
Constructor. -
Uses of CharacterSet in org.restlet.representation
Methods in org.restlet.representation that return CharacterSet Modifier and Type Method Description CharacterSet
Variant. getCharacterSet()
Returns the character set or null if not applicable.Methods in org.restlet.representation with parameters of type CharacterSet Modifier and Type Method Description void
StringRepresentation. setCharacterSet(CharacterSet characterSet)
void
Variant. setCharacterSet(CharacterSet characterSet)
Sets the character set or null if not applicable.
Note that when used with HTTP connectors, this property maps to the "Content-Type" header.Constructors in org.restlet.representation with parameters of type CharacterSet Constructor Description AppendableRepresentation(java.lang.CharSequence text, MediaType mediaType, Language language, CharacterSet characterSet)
Constructor.StringRepresentation(java.lang.CharSequence text, MediaType mediaType, Language language, CharacterSet characterSet)
Constructor. -
Uses of CharacterSet in org.restlet.service
Methods in org.restlet.service that return CharacterSet Modifier and Type Method Description CharacterSet
MetadataService. getCharacterSet(java.lang.String extension)
Returns the character set associated to this extension.CharacterSet
MetadataService. getDefaultCharacterSet()
Returns the default character set for textual representations.Methods in org.restlet.service that return types with arguments of type CharacterSet Modifier and Type Method Description java.util.List<CharacterSet>
MetadataService. getAllCharacterSets(java.lang.String extension)
Returns all the character sets associated to this extension.Methods in org.restlet.service with parameters of type CharacterSet Modifier and Type Method Description void
MetadataService. setDefaultCharacterSet(CharacterSet defaultCharacterSet)
Sets the default character set for local representations. -
Uses of CharacterSet in org.restlet.util
Methods in org.restlet.util that return CharacterSet Modifier and Type Method Description CharacterSet
WrapperRepresentation. getCharacterSet()
Methods in org.restlet.util with parameters of type CharacterSet Modifier and Type Method Description void
WrapperRepresentation. setCharacterSet(CharacterSet characterSet)
-