public class CodingErrorAction extends Object
IGNORE, REPLACE
and REPORT.| Modifier and Type | Field and Description |
|---|---|
static CodingErrorAction |
IGNORE
Denotes the action to ignore any errors.
|
static CodingErrorAction |
REPLACE
Denotes the action to fill in the output with a replacement character
when malformed input or an unmappable character is encountered.
|
static CodingErrorAction |
REPORT
Denotes the action to report the encountered error in an appropriate
manner, for example to throw an exception or return an informative
result.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns a text description of this action indication.
|
public static final CodingErrorAction IGNORE
public static final CodingErrorAction REPLACE
public static final CodingErrorAction REPORT