Uses of Class
org.apache.camel.dataformat.csv.CsvDataFormat
-
Uses of CsvDataFormat in org.apache.camel.dataformat.csv
Methods in org.apache.camel.dataformat.csv that return CsvDataFormatModifier and TypeMethodDescriptionCsvDataFormat.setAllowMissingColumnNames(Boolean allowMissingColumnNames) Sets whether missing column names are allowed.CsvDataFormat.setCaptureHeaderRecord(boolean captureHeaderRecord) Indicates whether the unmarshalling should capture the header record.CsvDataFormat.setCommentMarker(Character commentMarker) Sets the comment marker to use.CsvDataFormat.setCommentMarkerDisabled(boolean commentMarkerDisabled) Sets whether the comment markers are disabled.CsvDataFormat.setDelimiter(Character delimiter) Sets the delimiter.Sets the escape character.CsvDataFormat.setEscapeDisabled(boolean escapeDisabled) Sets whether the escaping is disabled.CsvDataFormat.setFormat(org.apache.commons.csv.CSVFormat format) Sets the CSV format before applying any changes.CsvDataFormat.setFormatName(String name) Sets the CSV format by name before applying any changes.Gets the header.CsvDataFormat.setHeaderDisabled(boolean headerDisabled) Sets whether the headers are disabled.CsvDataFormat.setIgnoreEmptyLines(Boolean ignoreEmptyLines) Sets whether empty lines must be ignored.CsvDataFormat.setIgnoreHeaderCase(Boolean ignoreHeaderCase) Sets whether to ignore case when accessing header names.CsvDataFormat.setIgnoreSurroundingSpaces(Boolean ignoreSurroundingSpaces) Sets whether surrounding spaces must be ignored.CsvDataFormat.setLazyLoad(boolean lazyLoad) Indicates whether the unmarshalling should lazily load the records.CsvDataFormat.setMarshallerFactory(CsvMarshallerFactory marshallerFactory) Sets theCsvMarshallerfactory.CsvDataFormat.setNullString(String nullString) Sets the null string replacement.CsvDataFormat.setNullStringDisabled(boolean nullStringDisabled) Sets whether the null string replacement is disabled.Sets the quote character.CsvDataFormat.setQuoteDisabled(boolean quoteDisabled) Sets whether quotes are disabledCsvDataFormat.setQuoteMode(org.apache.commons.csv.QuoteMode quoteMode) Sets the quote mode.CsvDataFormat.setRecordConverter(CsvRecordConverter<?> recordConverter) Sets the record converter to use.CsvDataFormat.setRecordSeparator(String recordSeparator) Sets the record separator.CsvDataFormat.setRecordSeparatorDisabled(boolean recordSeparatorDisabled) Sets whether the record separator is disabled.CsvDataFormat.setSkipHeaderRecord(Boolean skipHeaderRecord) Sets whether header record must be skipped.CsvDataFormat.setTrailingDelimiter(Boolean trailingDelimiter) Sets whether to add a trailing delimiter.Sets whether to trim leading and trailing blanks.CsvDataFormat.setUseMaps(boolean useMaps) Sets whether the unmarshalling should produce maps instead of lists.CsvDataFormat.setUseOrderedMaps(boolean useOrderedMaps) Sets whether the unmarshalling should produce ordered maps instead of lists.Methods in org.apache.camel.dataformat.csv with parameters of type CsvDataFormatModifier and TypeMethodDescriptionstatic CsvMarshallerCsvMarshaller.create(org.apache.commons.csv.CSVFormat format, CsvDataFormat dataFormat) Creates a new instance.CsvMarshallerFactory.create(org.apache.commons.csv.CSVFormat format, CsvDataFormat dataFormat) Creates and returns a newCsvMarshaller.