Enum Error Fix Type

This class defines actions to be taken as a response to the ErrorType reported. Each error must have some action associated with it in order to define a valid error handling strategy.

READ_POSSIBLE

The read value is taken (either null or string data - if there were not enough data in the column - this may happen only with the Fixed Width File Reader step) and this value is passed to the data parsing process. With the Text File Reader step, this strategy makes no sense because its behavior is the same as with the NULL_VALUE strategy: a CSV file cannot define a partially filled column so the result is either valid data value or null (when SHORT_LINE occurs).

SKIP_LINE

The line is not presented in the output at all. Processing of the current row ends and moves on to the next row.

NULL_VALUE

Null is written to the related output field as well as to all remaining fields (to the right of the current column).

STOP

The StopProcessingException is thrown and processing of the entire input ends.


iWay Software