Uses of Class
org.restlet.data.Encoding

Packages that use Encoding
org.restlet.data Information exchanged by components. 
org.restlet.engine.application Supports Restlet applications. 
org.restlet.engine.header Supports HTTP header parsing and formatting. 
org.restlet.representation Common representation data elements. 
org.restlet.service Services used by applications and components. 
org.restlet.util Various utility classes. 
 

Uses of Encoding in org.restlet.data
 

Fields in org.restlet.data declared as Encoding
static Encoding Encoding.ALL
          All encodings acceptable.
static Encoding Encoding.COMPRESS
          The common Unix file compression.
static Encoding Encoding.DEFLATE
          The zlib format defined by RFC 1950 and 1951.
static Encoding Encoding.DEFLATE_NOWRAP
          The zlib format defined by RFC 1950 and 1951, without wrapping.
static Encoding Encoding.FREEMARKER
          The FreeMarker encoding.
static Encoding Encoding.GZIP
          The GNU Zip encoding.
static Encoding Encoding.IDENTITY
          The default (identity) encoding.
static Encoding Encoding.VELOCITY
          The Velocity encoding.
static Encoding Encoding.ZIP
          The Info-Zip encoding.
 

Methods in org.restlet.data that return Encoding
 Encoding ClientInfo.getPreferredEncoding(List<Encoding> supported)
          Returns the preferred encoding among a list of supported ones, based on the client preferences.
static Encoding Encoding.valueOf(String name)
          Returns the encoding associated to a name.
 

Methods in org.restlet.data that return types with arguments of type Encoding
 List<Preference<Encoding>> ClientInfo.getAcceptedEncodings()
          Returns the modifiable list of encoding preferences.
 

Method parameters in org.restlet.data with type arguments of type Encoding
 Encoding ClientInfo.getPreferredEncoding(List<Encoding> supported)
          Returns the preferred encoding among a list of supported ones, based on the client preferences.
 void ClientInfo.setAcceptedEncodings(List<Preference<Encoding>> acceptedEncodings)
          Sets the encoding preferences.
 

Uses of Encoding in org.restlet.engine.application
 

Methods in org.restlet.engine.application that return Encoding
 Encoding Encoder.getBestEncoding(ClientInfo client)
          Returns the best supported encoding for a given client.
 Encoding MetadataExtension.getEncoding()
          Returns the encoding.
 

Methods in org.restlet.engine.application that return types with arguments of type Encoding
protected  List<Preference<Encoding>> FlexibleConneg.getEncodingPrefs()
          Returns the enriched list of encoding preferences.
protected  List<Preference<Encoding>> StrictConneg.getEncodingPrefs()
          Returns the enriched list of encoding preferences.
 List<Encoding> EncodeRepresentation.getEncodings()
          Returns the applied encodings.
 List<Encoding> DecodeRepresentation.getEncodings()
          Returns the encodings applied to the entity.
 List<Encoding> Encoder.getSupportedEncodings()
          Returns the list of supported encodings.
static List<Encoding> EncodeRepresentation.getSupportedEncodings()
          Returns the list of supported encodings.
static List<Encoding> DecodeRepresentation.getSupportedEncodings()
          Returns the list of supported encodings.
 

Method parameters in org.restlet.engine.application with type arguments of type Encoding
 float StrictConneg.scoreEncodings(List<Encoding> encodings)
          Scores encodings relatively to enriched client preferences.
 

Constructors in org.restlet.engine.application with parameters of type Encoding
EncodeRepresentation(Encoding encoding, Representation wrappedRepresentation)
          Constructor.
 

Uses of Encoding in org.restlet.engine.header
 

Methods in org.restlet.engine.header that return Encoding
 Encoding EncodingReader.readValue()
           
 

Methods in org.restlet.engine.header with parameters of type Encoding
protected  boolean EncodingReader.canAdd(Encoding value, Collection<Encoding> values)
           
protected  boolean EncodingWriter.canWrite(Encoding encoding)
           
 

Method parameters in org.restlet.engine.header with type arguments of type Encoding
protected  boolean EncodingReader.canAdd(Encoding value, Collection<Encoding> values)
           
static String EncodingWriter.write(List<Encoding> encodings)
          Writes a list of encodings.
 

Uses of Encoding in org.restlet.representation
 

Methods in org.restlet.representation that return types with arguments of type Encoding
 List<Encoding> Variant.getEncodings()
          Returns the modifiable list of encodings applied to the entity-body.
 

Method parameters in org.restlet.representation with type arguments of type Encoding
 void Variant.setEncodings(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.service
 

Methods in org.restlet.service that return Encoding
 Encoding MetadataService.getDefaultEncoding()
          Returns the default encoding for representations.
 Encoding MetadataService.getEncoding(String extension)
          Returns the encoding associated to this extension.
 

Methods in org.restlet.service with parameters of type Encoding
 void MetadataService.setDefaultEncoding(Encoding defaultEncoding)
          Sets the default encoding for local representations.
 

Uses of Encoding in org.restlet.util
 

Methods in org.restlet.util that return types with arguments of type Encoding
 List<Encoding> WrapperRepresentation.getEncodings()
           
 

Method parameters in org.restlet.util with type arguments of type Encoding
 void WrapperRepresentation.setEncodings(List<Encoding> encodings)
           
 



Copyright © 2005-2014 Restlet.