Modifier and Type | Method and Description |
---|---|
CsvDataFormat |
CsvDataFormat.setAllowMissingColumnNames(Boolean allowMissingColumnNames)
Sets whether or not missing column names are allowed.
|
CsvDataFormat |
CsvDataFormat.setCommentMarker(Character commentMarker)
Sets the comment marker to use.
|
CsvDataFormat |
CsvDataFormat.setCommentMarkerDisabled(boolean commentMarkerDisabled)
Sets whether or not the comment markers are disabled.
|
CsvDataFormat |
CsvDataFormat.setDelimiter(Character delimiter)
Sets the delimiter.
|
CsvDataFormat |
CsvDataFormat.setEscape(Character escape)
Sets the escape character.
|
CsvDataFormat |
CsvDataFormat.setEscapeDisabled(boolean escapeDisabled)
Sets whether or not the escaping is disabled.
|
CsvDataFormat |
CsvDataFormat.setFormat(org.apache.commons.csv.CSVFormat format)
Sets the CSV format before applying any changes.
|
CsvDataFormat |
CsvDataFormat.setFormatName(String name)
Sets the CSV format by name before applying any changes.
|
CsvDataFormat |
CsvDataFormat.setHeader(String[] header)
Gets the header.
|
CsvDataFormat |
CsvDataFormat.setHeaderDisabled(boolean headerDisabled)
Sets whether or not the headers are disabled.
|
CsvDataFormat |
CsvDataFormat.setIgnoreEmptyLines(Boolean ignoreEmptyLines)
Sets whether or not empty lines must be ignored.
|
CsvDataFormat |
CsvDataFormat.setIgnoreHeaderCase(Boolean ignoreHeaderCase)
Sets whether or not to ignore case when accessing header names.
|
CsvDataFormat |
CsvDataFormat.setIgnoreSurroundingSpaces(Boolean ignoreSurroundingSpaces)
Sets whether or not surrounding spaces must be ignored.
|
CsvDataFormat |
CsvDataFormat.setLazyLoad(boolean lazyLoad)
Indicates whether or not the unmarshalling should lazily load the records.
|
CsvDataFormat |
CsvDataFormat.setNullString(String nullString)
Sets the null string replacement.
|
CsvDataFormat |
CsvDataFormat.setNullStringDisabled(boolean nullStringDisabled)
Sets whether or not the null string replacement is disabled.
|
CsvDataFormat |
CsvDataFormat.setQuote(Character quote)
Sets the quote character.
|
CsvDataFormat |
CsvDataFormat.setQuoteDisabled(boolean quoteDisabled)
Sets whether or not quotes are disabled
|
CsvDataFormat |
CsvDataFormat.setQuoteMode(org.apache.commons.csv.QuoteMode quoteMode)
Sets the quote mode.
|
CsvDataFormat |
CsvDataFormat.setRecordConverter(CsvRecordConverter<?> recordConverter)
Sets the record converter to use.
|
CsvDataFormat |
CsvDataFormat.setRecordSeparator(String recordSeparator)
Sets the record separator.
|
CsvDataFormat |
CsvDataFormat.setRecordSeparatorDisabled(boolean recordSeparatorDisabled)
Sets whether or not the record separator is disabled.
|
CsvDataFormat |
CsvDataFormat.setSkipHeaderRecord(Boolean skipHeaderRecord)
Sets whether or not header record must be skipped.
|
CsvDataFormat |
CsvDataFormat.setTrailingDelimiter(Boolean trailingDelimiter)
Sets whether or not to add a trailing delimiter.
|
CsvDataFormat |
CsvDataFormat.setTrim(Boolean trim)
Sets whether or not to trim leading and trailing blanks.
|
CsvDataFormat |
CsvDataFormat.setUseMaps(boolean useMaps)
Sets whether or not the unmarshalling should produce maps instead of lists.
|
Apache Camel