Uses of Class
com.pervasive.datarush.operators.io.ParseErrorAction
-
Packages that use ParseErrorAction Package Description com.pervasive.datarush.operators.io Provides base file I/O components including encoders and decoders. -
-
Uses of ParseErrorAction in com.pervasive.datarush.operators.io
Methods in com.pervasive.datarush.operators.io that return ParseErrorAction Modifier and Type Method Description ParseErrorAction
AbstractReader. getExtraFieldAction()
Gets how fields found when parsing the record, but not declared in the schema are handled.ParseErrorAction
ParsingOptions. getExtraFieldAction()
Gets how fields found when parsing the record, but not declared in the schema are handled.ParseErrorAction
AbstractReader. getFieldErrorAction()
Gets how fields which cannot be parsed are handled.ParseErrorAction
ParsingOptions. getFieldErrorAction()
Gets how fields which cannot be parsed are handled.ParseErrorAction
AbstractReader. getMissingFieldAction()
Gets how fields declared in the schema, but not found when parsing the record are handled.ParseErrorAction
ParsingOptions. getMissingFieldAction()
Gets how fields declared in the schema, but not found when parsing the record are handled.static ParseErrorAction
ParseErrorAction. valueOf(String name)
Returns the enum constant of this type with the specified name.static ParseErrorAction[]
ParseErrorAction. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.pervasive.datarush.operators.io with parameters of type ParseErrorAction Modifier and Type Method Description void
AbstractReader. setExtraFieldAction(ParseErrorAction action)
Sets how to handle fields found when parsing the record, but not declared in the schema.void
ParsingOptions. setExtraFieldAction(ParseErrorAction action)
Sets how to handle fields found when parsing the record, but not declared in the schema.void
AbstractReader. setFieldErrorAction(ParseErrorAction action)
Sets how to handle fields which cannot be parsed.void
ParsingOptions. setFieldErrorAction(ParseErrorAction action)
Sets how to handle fields which cannot be parsed.void
AbstractReader. setMissingFieldAction(ParseErrorAction action)
Sets how to handle fields declared in the schema, but not found when parsing the record.void
ParsingOptions. setMissingFieldAction(ParseErrorAction action)
Sets how to handle fields declared in the schema, but not found when parsing the record.void
AbstractReader. setParseErrorAction(ParseErrorAction action)
Sets how to handle all parsing errors.void
ParsingOptions. setParseErrorAction(ParseErrorAction action)
Sets how to handle all parsing errors.
-