Types - io

  • Format DEFAULT | CSV | TDF
  • The format, which will be used to represent the CSV.

    DEFAULT - The default value is the format specified by the CSVChannel. Precedence will be given to the field separator and record separator.

    CSV - Field separator will be "," and the record separator will be a new line.

    TDF - Field separator will be a tab and record separator will be a new line.

  • Separator COMMA | TAB | COLON | string
  • Field separators, which are supported by the DelimitedTextRecordChannel.

    COMMA - Delimited text records will be separated using a comma.

    TAB - Delimited text records will be separated using a tab.

    COLON - Delimited text records will 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