public interface Encoder
Provides the highest level of abstraction for Encoders. This is the sister
interface of Decoder. Every
implementation of Encoder provides this common generic interface whic allows
a user to pass a generic Object to any Encoder implementation in the codec
package.
Object encode(Object object) throws EncoderException
byte[] or Strings
depending on the implementation used.object - An object to encodeEncoderException - an encoder exception is thrown if the encoder experiences a
failure condition during the encoding process.Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.