Codec
interface Codec<Source : Any, Target : Any> : Decoder<Target, Source> , Encoder<Source, Target> (source)
Bidirectional codec that converts between domain Source values and their serialized Target representations.
Implementations expose both encoding and decoding functionality together with runtime type metadata so that calling code can select codecs without relying on Java reflection.
Parameters
See also
Types
Functions
Link copied to clipboard
Converts a StringCodec into a ByteArrayCodec using UTF-8 byte conversion.
Link copied to clipboard
Link copied to clipboard