Fields Summary |
---|
private String | name |
public static final CodingErrorAction | IGNOREAction indicating that a coding error is to be handled by dropping the
erroneous input and resuming the coding operation. |
public static final CodingErrorAction | REPLACEAction 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. |
public static final CodingErrorAction | REPORTAction indicating that a coding error is to be reported, either by
returning a {@link CoderResult} object or by throwing a {@link
CharacterCodingException}, whichever is appropriate for the method
implementing the coding process. |