public interface Encoder<I,O>
This is the sister interface of Decoder. Every implementation of Encoder provides this
common generic interface which allows a user to pass a generic Object to any Encoder implementation
in the codec package.
O encode(I source) throws CodecException
byte[] or Strings depending on the implementation used.source - An object to encodeCodecException - An encoder exception is thrown if the encoder experiences a failure condition during the encoding
process.Copyright © 2022. All rights reserved.