java.nio.charset.CodingErrorAction
Used to indicate what kind of actions to take in case of encoding/decoding
errors. Currently three actions are defined, namely, IGNORE, REPLACE and
REPORT.
Summary
Constants
|
|
|
Value |
|
CodingErrorAction |
IGNORE |
Indicating the action to ignore any errors. |
|
|
CodingErrorAction |
REPLACE |
Indicating the action to fill in the output with a replacement character
when malformed input or an unmappable character is encountered. |
|
|
CodingErrorAction |
REPORT |
Indicating the action to report the encountered error in an appropriate
manner, for example, throw an exception or return an informative result. |
|
|
Public Methods
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait
Details
Constants
Indicating the action to ignore any errors.
Indicating the action to fill in the output with a replacement character
when malformed input or an unmappable character is encountered.
Indicating the action to report the encountered error in an appropriate
manner, for example, throw an exception or return an informative result.
Public Methods
public
String
toString()
Returns a text description of this action indication..
Returns
- a text description of this action indication.