Java java.nio.charset CodingErrorAction fields, constructors, methods, implement or subclass

Example usage for Java java.nio.charset CodingErrorAction fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.nio.charset CodingErrorAction.

The text is from its open source code.

Field

CodingErrorActionIGNORE
Action indicating that a coding error is to be handled by dropping the erroneous input and resuming the coding operation.
CodingErrorActionREPLACE
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.
CodingErrorActionREPORT
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.