API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.nio.charset. CodingErrorAction View Source
Author(s)
Mark Reinhold
JSR-51 Expert Group
Since
1.4
Version
1.7, 05/11/17
Serial
Hierarchy
 Object
      CodingErrorAction
Implements
Subclasses
Description
public class CodingErrorAction
  A typesafe enumeration for coding-error actions.
See also:   
Constructors
private CodingErrorAction (String name)
Methods
Hide/Show inherited methods
public String toString ()
  Returns a string describing this action.
Fields
Hide/Show inherited fields
publicfinalstatic CodingErrorAction IGNORE
  Action indicating that a coding error is to be handled by dropping the erroneous input and resuming the coding operation.
publicfinalstatic 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.
publicfinalstatic 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.
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar