compact1, compact2, compact3
java.nio.charset
Class CodingErrorAction
- java.lang.Object
-
- java.nio.charset.CodingErrorAction
-
-
Field Summary
Fields Modifier and Type Field and Description static CodingErrorAction
IGNORE
Action indicating that a coding error is to be handled by dropping the erroneous input and resuming the coding operation.static CodingErrorAction
REPLACE
Action indicating that a coding error is to be handled by dropping the erroneous input, appending the coder's replacement value to the output buffer, and resuming the coding operation.static CodingErrorAction
REPORT
Action indicating that a coding error is to be reported, either by returning aCoderResult
object or by throwing aCharacterCodingException
, whichever is appropriate for the method implementing the coding process.
-
-
-
Field Detail
IGNORE
public static final CodingErrorAction IGNORE
Action indicating that a coding error is to be handled by dropping the erroneous input and resuming the coding operation.
REPLACE
public static final CodingErrorAction REPLACE
Action indicating that a coding error is to be handled by dropping the erroneous input, appending the coder's replacement value to the output buffer, and resuming the coding operation.
REPORT
public static final CodingErrorAction REPORT
Action indicating that a coding error is to be reported, either by returning aCoderResult
object or by throwing aCharacterCodingException
, whichever is appropriate for the method implementing the coding process.
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.