Uses of Class
io.github.mmm.binary.codec.BaseFormat
-
Packages that use BaseFormat Package Description io.github.mmm.binary.codec -
-
Uses of BaseFormat in io.github.mmm.binary.codec
Methods in io.github.mmm.binary.codec that return BaseFormat Modifier and Type Method Description static BaseFormat
BaseFormat. ofDefault()
static BaseFormat
BaseFormat. ofMime()
static BaseFormat
BaseFormat. ofNewline(String newline, int charsPerLine)
static BaseFormat
BaseFormat. ofStrict()
Methods in io.github.mmm.binary.codec with parameters of type BaseFormat Modifier and Type Method Description protected abstract byte[]
Base. doDecode(String encodedData, BaseFormat format)
protected byte[]
BaseGeneric. doDecode(String encodedData, BaseFormat format)
protected abstract String
Base. doEncode(byte[] data, BaseFormat format)
protected String
BaseGeneric. doEncode(byte[] data, BaseFormat format)
BinaryCodec
Base. withFormat(BaseFormat format)
Constructors in io.github.mmm.binary.codec with parameters of type BaseFormat Constructor Description BaseFormatCodec(Base base, BaseFormat format)
The constructor.
-