Example usage for Java java.nio.charset CodingErrorAction fields, constructors, methods, implement or subclass
The text is from its open source code.
CodingErrorAction | IGNORE Action indicating that a coding error is to be handled by dropping the erroneous input and resuming the coding operation. |
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. |
CodingErrorAction | REPORT Action indicating that a coding error is to be reported, either by returning a CoderResult object or by throwing a CharacterCodingException , whichever is appropriate for the method implementing the coding process. |