CsvFormat.Builder |
CsvFormat.Builder.allowDoubleQuoteEscape(boolean allowDoubleQuoteEscape) |
Whether to allow double quote escape.
|
CsvFormat.Builder |
CsvFormat.Builder.cellFilter(Predicate<String> cellFilter) |
Sets the cell filter that is applied to each cell.
|
CsvFormat.Builder |
CsvFormat.Builder.cellNormalizer(UnaryOperator<String> cellNormalizer) |
Sets the cell normalizer that is applied to each cell.
|
static CsvFormat.Builder |
CsvFormat.csvFormatBuilder() |
|
CsvFormat.Builder |
CsvFormat.Builder.delimiter(int delimiter) |
Sets the character used to delimit cells.
|
CsvFormat.Builder |
CsvFormat.Builder.delimiter(String delimiter) |
Sets the character used to delimit cells.
|
CsvFormat.Builder |
CsvFormat.Builder.escape(int escape) |
Sets the character used to escape special characters in a cell.
|
CsvFormat.Builder |
CsvFormat.Builder.escape(String escape) |
Sets the character used to escape special characters in a cell.
|
CsvFormat.Builder |
CsvFormat.Builder.ignoreBlankCells(boolean filterBlankCells) |
Sets up the cellFilter to filter out blank cells.
|
CsvFormat.Builder |
CsvFormat.Builder.ignoreEmptyCells(boolean filterEmptyCells) |
Sets up the cellFilter to filter out empty cells.
|
CsvFormat.Builder |
CsvFormat.Builder.newlines(String... newlines) |
Sets the characters that are treated as newlines.
|
CsvFormat.Builder |
CsvFormat.Builder.newlines(Collection<String> newlines) |
Sets the characters that are treated as newlines.
|
CsvFormat.Builder |
CsvFormat.Builder.quote(int quote) |
Sets the quoteOpen and quoteClose characters to the same value.
|
CsvFormat.Builder |
CsvFormat.Builder.quote(String quote) |
Sets the quoteOpen and quoteClose characters to the same value.
|
CsvFormat.Builder |
CsvFormat.Builder.quoteClose(int quoteClose) |
Sets the character used to end a quoted cell.
|
CsvFormat.Builder |
CsvFormat.Builder.quoteClose(String quoteClose) |
Sets the character used to end a quoted cell.
|
CsvFormat.Builder |
CsvFormat.Builder.quoteOpen(int quoteOpen) |
Sets the character used to start a quoted cell.
|
CsvFormat.Builder |
CsvFormat.Builder.quoteOpen(String quoteOpen) |
Sets the character used to start a quoted cell.
|
CsvFormat.Builder |
CsvFormat.Builder.rowFilter(Predicate<List<String>> rowFilter) |
Sets the row filter that is applied to each row after it was split into cells.
|
CsvFormat.Builder |
CsvFormat.Builder.rowMutator(Consumer<List<String>> rowMutator) |
Sets the row normalizer that is applied to each row after it was split into cells.
|
CsvFormat.Builder |
CsvFormat.Builder.rowNormalizer(UnaryOperator<List<String>> rowNormalizer) |
Sets the row normalizer that is applied to each row after it was split into cells.
|
CsvFormat.Builder |
CsvFormat.Builder.treatLineBreaksAsDelimiter(boolean treatLineBreaksAsDelimiter) |
When set to true , line breaks will be treated as cell delimiters.
|
CsvFormat.Builder |
CsvFormat.Builder.trimCells(boolean trimCells) |
Sets up the cellNormalizer to trim cells, i.e.
|