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 ParseErrorActionAbstractReader. getExtraFieldAction()Gets how fields found when parsing the record, but not declared in the schema are handled.ParseErrorActionParsingOptions. getExtraFieldAction()Gets how fields found when parsing the record, but not declared in the schema are handled.ParseErrorActionAbstractReader. getFieldErrorAction()Gets how fields which cannot be parsed are handled.ParseErrorActionParsingOptions. getFieldErrorAction()Gets how fields which cannot be parsed are handled.ParseErrorActionAbstractReader. getMissingFieldAction()Gets how fields declared in the schema, but not found when parsing the record are handled.ParseErrorActionParsingOptions. getMissingFieldAction()Gets how fields declared in the schema, but not found when parsing the record are handled.static ParseErrorActionParseErrorAction. 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 voidAbstractReader. setExtraFieldAction(ParseErrorAction action)Sets how to handle fields found when parsing the record, but not declared in the schema.voidParsingOptions. setExtraFieldAction(ParseErrorAction action)Sets how to handle fields found when parsing the record, but not declared in the schema.voidAbstractReader. setFieldErrorAction(ParseErrorAction action)Sets how to handle fields which cannot be parsed.voidParsingOptions. setFieldErrorAction(ParseErrorAction action)Sets how to handle fields which cannot be parsed.voidAbstractReader. setMissingFieldAction(ParseErrorAction action)Sets how to handle fields declared in the schema, but not found when parsing the record.voidParsingOptions. setMissingFieldAction(ParseErrorAction action)Sets how to handle fields declared in the schema, but not found when parsing the record.voidAbstractReader. setParseErrorAction(ParseErrorAction action)Sets how to handle all parsing errors.voidParsingOptions. setParseErrorAction(ParseErrorAction action)Sets how to handle all parsing errors.
-