Uses of Class
de.siegmar.fastcsv.writer.CsvWriter.CsvWriterBuilder
Packages that use CsvWriter.CsvWriterBuilder
-
Uses of CsvWriter.CsvWriterBuilder in de.siegmar.fastcsv.writer
Methods in de.siegmar.fastcsv.writer that return CsvWriter.CsvWriterBuilderModifier and TypeMethodDescriptionCsvWriter.CsvWriterBuilder.autoFlush(boolean autoFlush) Configures whether data should be flushed after each record write operation.CsvWriter.CsvWriterBuilder.bufferSize(int bufferSize) Configures the size of the internal buffer.static CsvWriter.CsvWriterBuilderCsvWriter.builder()Creates aCsvWriter.CsvWriterBuilderinstance used to configure and create instances of this class.CsvWriter.CsvWriterBuilder.commentCharacter(char commentCharacter) Sets the character used to prepend commented lines – default:#(hash/number).CsvWriter.CsvWriterBuilder.fieldSeparator(char fieldSeparator) Sets the character that is used to separate fields – default:,(comma).CsvWriter.CsvWriterBuilder.lineDelimiter(LineDelimiter lineDelimiter) Sets the delimiter used to separate lines (default:LineDelimiter.CRLF).CsvWriter.CsvWriterBuilder.quoteCharacter(char quoteCharacter) Sets the character used to quote values – default:"(double quote).CsvWriter.CsvWriterBuilder.quoteStrategy(QuoteStrategy quoteStrategy) Sets the strategy that defines when optional quoting has to be performed – default: none.