Class | Description |
---|---|
Base64Codec |
Converts binary data to/from a string consisting of base-64 characters.
|
Codec |
Implementations translate an input stream to an output stream according to
specific rules.
|
HexCodec |
Converts binary data to/from a string of hexadecimal digits (eg, an array
containing the bytes
[0x01, 0x23, 0xEF] is encoded as the
string "0123EF" ). |
Enum | Description |
---|---|
Base64Codec.Option |
Different standard construction options: each value specifies a combination of
maximum line length and separator characters.
|
Exception | Description |
---|---|
CodecException |
General runtime exception thrown during codec operation.
|
InvalidSourceByteException |
This exception is thrown during decoding, when an invalid character is found in
the source stream.
|