Config
Base configuration for an EncoderDecoder. More options may be specified by the implementing class.
Parameters
If true, decoding will skip over spaces and new lines ('\n', '\r', ' ', '\t'). If false, an EncodingException will be thrown when encountering those characters. If null, those characters are passed along to Decoder.Feed.consumeProtected.
If greater than 0 and isLenient is not false (i.e. is null or true), new lines will be output at the expressed lineBreakInterval when encoding.
The character that would be used when padding the encoded output; NOT "if padding should be used". If the encoding specification does not use padding, pass null
.
Constructors
Types
Functions
Pre-calculates and returns the maximum size of the output, after decoding would occur, for input that is not yet known (i.e. cannot be wrapped in DecoderInput, such as the contents of a File where only the file size is known) based off of the Config options set for the implementation.
Pre-calculates and returns the maximum size of the output, after decoding would occur, for input that is known based off of the Config options set for the implementation.
Will only receive values greater than 0.
Will only receive values greater than 0.
Pre-calculates and returns the size of the output, after encoding would occur, based off of the Config options set.
Pre-calculates and returns the size of the output, after encoding would occur, based off of the Config options set and expressed lineBreakInterval.
Will only receive values greater than 0.