Types -
io
- Error GenericError | ConnectionTimedOutError | AccessDeniedError | FileNotFoundError | EofError
-
Represents IO module related errors.
- Format DEFAULT | CSV | TDF
-
Format which will be used to represent the CSV.
DEFAULT - Would default to the format specified by CSVChannel. Precedence will be given to field separator and record separator.
CSV - Field separator would be "," and the record separator would be new line.
TDF - Field separator will be tab and record separator will be new line.
- Separator COMMA | TAB | COLON | string
-
Field separators which are supported by DelimitedTextRecordChannel.
COMMA - Delimited text records would be separated using a comma.
TAB - Delimited text records would be separated using a tab.
COLON - Delimited text records would be separated using a colon(:).
- ByteOrder BE | LE
-
Represents network byte order.
BIG_ENDIAN - specifies the bytes to be in the order of most significant byte first
LITTLE_ENDIAN - specifies the byte order to be the least significant byte first