Uses of Class
org.restlet.client.data.Encoding
-
Packages that use Encoding 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 Encoding in org.restlet.client.data
Fields in org.restlet.client.data declared as Encoding Modifier and Type Field Description static EncodingEncoding. ALLAll encodings acceptable.static EncodingEncoding. COMPRESSThe common Unix file compression.static EncodingEncoding. DEFLATEThe zlib format defined by RFC 1950 and 1951.static EncodingEncoding. DEFLATE_NOWRAPThe zlib format defined by RFC 1950 and 1951, without wrapping.static EncodingEncoding. FREEMARKERThe FreeMarker encoding.static EncodingEncoding. GZIPThe GNU Zip encoding.static EncodingEncoding. IDENTITYThe default (identity) encoding.static EncodingEncoding. VELOCITYThe Velocity encoding.static EncodingEncoding. ZIPThe Info-Zip encoding.Methods in org.restlet.client.data that return Encoding Modifier and Type Method Description static EncodingEncoding. valueOf(java.lang.String name)Returns the encoding associated to a name.Methods in org.restlet.client.data that return types with arguments of type Encoding Modifier and Type Method Description java.util.List<Preference<Encoding>>ClientInfo. getAcceptedEncodings()Returns the modifiable list of encoding preferences.Method parameters in org.restlet.client.data with type arguments of type Encoding Modifier and Type Method Description voidClientInfo. setAcceptedEncodings(java.util.List<Preference<Encoding>> acceptedEncodings)Sets the encoding preferences. -
Uses of Encoding in org.restlet.client.representation
Methods in org.restlet.client.representation that return types with arguments of type Encoding Modifier and Type Method Description java.util.List<Encoding>Variant. getEncodings()Returns the modifiable list of encodings applied to the entity-body.Method parameters in org.restlet.client.representation with type arguments of type Encoding Modifier and Type Method Description voidVariant. setEncodings(java.util.List<Encoding> encodings)Sets the list of encodings applied to the entity-body.
Note that when used with HTTP connectors, this property maps to the "Content-Encoding" header. -
Uses of Encoding in org.restlet.client.service
Methods in org.restlet.client.service that return Encoding Modifier and Type Method Description EncodingMetadataService. getDefaultEncoding()Returns the default encoding for representations.EncodingMetadataService. getEncoding(java.lang.String extension)Returns the encoding associated to this extension.Methods in org.restlet.client.service with parameters of type Encoding Modifier and Type Method Description voidMetadataService. setDefaultEncoding(Encoding defaultEncoding)Sets the default encoding for local representations. -
Uses of Encoding in org.restlet.client.util
Methods in org.restlet.client.util that return types with arguments of type Encoding Modifier and Type Method Description java.util.List<Encoding>WrapperRepresentation. getEncodings()Method parameters in org.restlet.client.util with type arguments of type Encoding Modifier and Type Method Description voidWrapperRepresentation. setEncodings(java.util.List<Encoding> encodings)
-