Interface CsvOptions.Builder

All Superinterfaces:
Buildable, CopyableBuilder<CsvOptions.Builder,CsvOptions>, SdkBuilder<CsvOptions.Builder,CsvOptions>, SdkPojo
Enclosing class:
CsvOptions

public static interface CsvOptions.Builder extends SdkPojo, CopyableBuilder<CsvOptions.Builder,CsvOptions>
  • Method Details

    • delimiter

      CsvOptions.Builder delimiter(String delimiter)

      The delimiter used for separating items in the CSV file being imported.

      Parameters:
      delimiter - The delimiter used for separating items in the CSV file being imported.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • headerList

      CsvOptions.Builder headerList(Collection<String> headerList)

      List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

      Parameters:
      headerList - List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • headerList

      CsvOptions.Builder headerList(String... headerList)

      List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.

      Parameters:
      headerList - List of the headers used to specify a common header for all source CSV files being imported. If this field is specified then the first line of each CSV file is treated as data instead of the header. If this field is not specified the the first line of each CSV file is treated as the header.
      Returns:
      Returns a reference to this object so that method calls can be chained together.