BinaryEncoder, StringEncoderAbstractCaverphone, Base32, Base64, BaseNCodec, BCodec, BeiderMorseEncoder, BinaryCodec, Caverphone, Caverphone1, Caverphone2, ColognePhonetic, DaitchMokotoffSoundex, DoubleMetaphone, Hex, MatchRatingApproachEncoder, Metaphone, Nysiis, QCodec, QuotedPrintableCodec, RefinedSoundex, Soundex, URLCodecpublic interface Encoder
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.
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Object |
encode(java.lang.Object source) |
Encodes an "Object" and returns the encoded content as an Object.
|
java.lang.Object encode(java.lang.Object source) throws EncoderException
byte[] or Strings depending on the implementation used.source - An object to encodeEncoderException - An encoder exception is thrown if the encoder experiences a failure condition during the encoding
process.