Uses of Class
de.siegmar.fastcsv.reader.CsvReader.CsvReaderBuilder
Packages that use CsvReader.CsvReaderBuilder
-
Uses of CsvReader.CsvReaderBuilder in de.siegmar.fastcsv.reader
Methods in de.siegmar.fastcsv.reader that return CsvReader.CsvReaderBuilderModifier and TypeMethodDescriptionCsvReader.CsvReaderBuilder.acceptCharsAfterQuotes(boolean acceptCharsAfterQuotes) Specifies whether the presence of characters between a closing quote and a field separator or the end of a line should be treated as an error or not.static CsvReader.CsvReaderBuilderCsvReader.builder()Constructs aCsvReader.CsvReaderBuilderto configure and build instances of this class.CsvReader.CsvReaderBuilder.commentCharacter(char commentCharacter) Sets thecommentCharacterused to comment lines.CsvReader.CsvReaderBuilder.commentStrategy(CommentStrategy commentStrategy) Sets the strategy that defines how (and if) commented lines should be handled (default:CommentStrategy.NONEas comments are not defined in RFC 4180).CsvReader.CsvReaderBuilder.detectBomHeader(boolean detectBomHeader) Defines if an optional BOM (Byte order mark) header should be detected.CsvReader.CsvReaderBuilder.fieldSeparator(char fieldSeparator) Sets thefieldSeparatorused when reading CSV data.CsvReader.CsvReaderBuilder.ignoreDifferentFieldCount(boolean ignoreDifferentFieldCount) Defines if anCsvParseExceptionshould be thrown if records do contain a different number of fields.CsvReader.CsvReaderBuilder.quoteCharacter(char quoteCharacter) Sets thequoteCharacterused when reading CSV data.CsvReader.CsvReaderBuilder.skipEmptyLines(boolean skipEmptyLines) Defines whether empty lines should be skipped when reading data.