Uses of Class
org.restlet.client.data.CharacterSet
-
Packages that use CharacterSet Package Description org.restlet.client.data Information exchanged by components.org.restlet.client.representation Common representation data elements.org.restlet.client.service Services used by applications and components.org.restlet.client.util Various utility classes. -
-
Uses of CharacterSet in org.restlet.client.data
Fields in org.restlet.client.data declared as CharacterSet Modifier and Type Field Description static CharacterSetCharacterSet. ALLAll character sets acceptable.static CharacterSetCharacterSet. DEFAULTstatic CharacterSetCharacterSet. ISO_8859_1The ISO/IEC 8859-1 (Latin 1) character set.static CharacterSetCharacterSet. ISO_8859_10The ISO/IEC 8859-10 (Latin 6) character set.static CharacterSetCharacterSet. ISO_8859_2The ISO/IEC 8859-2 (Latin 2) character set.static CharacterSetCharacterSet. ISO_8859_3The ISO/IEC 8859-3 (Latin 3) character set.static CharacterSetCharacterSet. ISO_8859_4The ISO/IEC 8859-4 (Latin 4) character set.static CharacterSetCharacterSet. ISO_8859_5The ISO/IEC 8859-5 (Cyrillic) character set.static CharacterSetCharacterSet. ISO_8859_6The ISO/IEC 8859-6 (Arabic) character set.static CharacterSetCharacterSet. ISO_8859_7The ISO/IEC 8859-7 (Greek) character set.static CharacterSetCharacterSet. ISO_8859_8The ISO/IEC 8859-8 (Hebrew) character set.static CharacterSetCharacterSet. ISO_8859_9The ISO/IEC 8859-9 (Latin 5) character set.static CharacterSetCharacterSet. MACINTOSHThe Macintosh ("Mac OS Roman") character set.static CharacterSetCharacterSet. US_ASCIIThe US-ASCII character set.static CharacterSetCharacterSet. UTF_16The UTF-16 character set.static CharacterSetCharacterSet. UTF_8The UTF-8 character set.static CharacterSetCharacterSet. WINDOWS_1252The Windows-1252 ('ANSI') character set.Methods in org.restlet.client.data that return CharacterSet Modifier and Type Method Description static CharacterSetCharacterSet. valueOf(java.lang.String name)Returns the character set associated to a name.Methods in org.restlet.client.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.client.data with parameters of type CharacterSet Modifier and Type Method Description static java.lang.StringReference. decode(java.lang.String toDecode, CharacterSet characterSet)Decodes a given string using the standard URI encoding mechanism.java.lang.StringForm. encode(CharacterSet characterSet)URL encodes the form.java.lang.StringForm. encode(CharacterSet characterSet, char separator)URL encodes the form.voidParameter. encode(java.lang.Appendable buffer, CharacterSet characterSet)Encodes the parameter into the target buffer.java.lang.StringParameter. encode(CharacterSet characterSet)Encodes the parameter as a string.static java.lang.StringReference. 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.StringReference. encode(java.lang.String toEncode, CharacterSet characterSet)Encodes a given string using the standard URI encoding mechanism.FormReference. getMatrixAsForm(CharacterSet characterSet)Returns the optional matrix as a form submission.java.lang.StringForm. getMatrixString(CharacterSet characterSet)Formats the form as a query string.FormReference. getQueryAsForm(CharacterSet characterSet)Returns the optional query component as a form submission.java.lang.StringForm. getQueryString(CharacterSet characterSet)Formats the form as a query string.RepresentationForm. getWebRepresentation(CharacterSet characterSet)Returns the form as a Web representation (MediaType.APPLICATION_WWW_FORM).Method parameters in org.restlet.client.data with type arguments of type CharacterSet Modifier and Type Method Description voidClientInfo. setAcceptedCharacterSets(java.util.List<Preference<CharacterSet>> acceptedCharacterSets)Sets the character set preferences.Constructors in org.restlet.client.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.client.representation
Methods in org.restlet.client.representation that return CharacterSet Modifier and Type Method Description CharacterSetVariant. getCharacterSet()Returns the character set or null if not applicable.Methods in org.restlet.client.representation with parameters of type CharacterSet Modifier and Type Method Description voidStringRepresentation. setCharacterSet(CharacterSet characterSet)voidVariant. 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.client.representation with parameters of type CharacterSet Constructor Description StringRepresentation(java.lang.CharSequence text, MediaType mediaType, Language language, CharacterSet characterSet)Constructor. -
Uses of CharacterSet in org.restlet.client.service
Methods in org.restlet.client.service that return CharacterSet Modifier and Type Method Description CharacterSetMetadataService. getCharacterSet(java.lang.String extension)Returns the character set associated to this extension.CharacterSetMetadataService. getDefaultCharacterSet()Returns the default character set for textual representations.Methods in org.restlet.client.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.client.service with parameters of type CharacterSet Modifier and Type Method Description voidMetadataService. setDefaultCharacterSet(CharacterSet defaultCharacterSet)Sets the default character set for local representations. -
Uses of CharacterSet in org.restlet.client.util
Methods in org.restlet.client.util that return CharacterSet Modifier and Type Method Description CharacterSetWrapperRepresentation. getCharacterSet()Methods in org.restlet.client.util with parameters of type CharacterSet Modifier and Type Method Description voidWrapperRepresentation. setCharacterSet(CharacterSet characterSet)
-