Config

constructor(isLenient: Boolean?, lineBreakInterval: Byte, paddingChar: Char?)(source)

Parameters

isLenient

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.

lineBreakInterval

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.

paddingChar

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.