Returns {@code true} if a Unicode decoding should abort with an error when an invalid code unit sequence is encountered.
Returns {@code true} if Unicode decoding should abort with an error when a {@code NUL} byte is encountered.
Returns a {@code UtfErrorMode} that, if {@code isNonZero} is {@code true}, aborts when Unicode decoding encounters a {@code NUL} byte.
Returns {@code true} if a Unicode decoding should substitute invalid code unit sequences with a replacement character.
Returns the Unicode code point of the replacement character to substitute for invalid code unit sequences. Defaults to {@code U+FFFD}.
Returns a {@code UtfErrorMode} that aborts Unicode decoding with an error when invalid code unit sequences are encountered.
Returns a {@code UtfErrorMode} that aborts Unicode decoding with an error when invalid code unit sequences, and {@code NUL} bytes, are encountered.
Returns a {@code UtfErrorMode} that substitutes invalid code unit sequences with the replacement character ({@code U+FFFD}).
Returns a {@code UtfErrorMode} that substitutes invalid code unit sequences with the given {@code replacementChar}.
Returns a {@code UtfErrorMode} that substitutes invalid code unit sequences with the replacement character ({@code U+FFFD}), and aborts decoding with an error when {@code NUL} bytes are encountered.
Returns a {@code UtfErrorMode} that substitutes invalid code unit sequences with the given {@code replacementChar}, and aborts decoding with an error when {@code NUL} bytes are encountered.
Unicode transformation format error handling mode.