Uses of Interface
io.github.mmm.binary.codec.BinaryCodec
-
Packages that use BinaryCodec Package Description io.github.mmm.binary io.github.mmm.binary.codec -
-
Uses of BinaryCodec in io.github.mmm.binary
Methods in io.github.mmm.binary with parameters of type BinaryCodec Modifier and Type Method Description String
Binary. format(BinaryCodec codec)
This method avoids anarray-copy
ofBinary.getData()
and is therefore more efficient than usingBinaryCodec
.encode
(Binary.getData()
).
ATTENTION:
Sub-types often represent sensible data.String
BinaryType. format(BinaryCodec codec)
-
Uses of BinaryCodec in io.github.mmm.binary.codec
Classes in io.github.mmm.binary.codec that implement BinaryCodec Modifier and Type Class Description class
Base
Implementation ofBinaryCodec
based onalphabet
of unique and visible ASCII characters.class
Base10
Base10
is the common decimal number encoding.class
Base16
Base16
is the common octal number encoding.class
Base2
Base2
is the common binary number encoding.class
Base32
Base32
is a encoding that has an alphabet with 32 letters.class
Base58
Base58
is a encoding that has an alphabet with 58 letters.class
Base64
Base64
is a encoding that has an alphabet with 64 letters.class
Base8
Base8
is the common octal number encoding.class
BaseFormatCodec
class
BaseGeneric
Implementation ofBinaryCodec
based onalphabet
of unique and visible ASCII characters.Methods in io.github.mmm.binary.codec that return BinaryCodec Modifier and Type Method Description BinaryCodec
Base. withFormat(BaseFormat format)
-