CSVFormat |
CSVFormat.Predefined.getFormat() |
Gets the format.
|
static CSVFormat |
CSVFormat.newFormat(char delimiter) |
Creates a new CSV format with the specified delimiter.
|
static CSVFormat |
CSVFormat.valueOf(java.lang.String format) |
|
CSVFormat |
CSVFormat.withAllowMissingColumnNames() |
Returns a new CSVFormat with the missing column names behavior of the format set to true
|
CSVFormat |
CSVFormat.withAllowMissingColumnNames(boolean allowMissingColumnNames) |
Returns a new CSVFormat with the missing column names behavior of the format set to the given value.
|
CSVFormat |
CSVFormat.withAutoFlush(boolean autoFlush) |
Returns a new CSVFormat with whether to flush on close.
|
CSVFormat |
CSVFormat.withCommentMarker(char commentMarker) |
Returns a new CSVFormat with the comment start marker of the format set to the specified character.
|
CSVFormat |
CSVFormat.withCommentMarker(java.lang.Character commentMarker) |
Returns a new CSVFormat with the comment start marker of the format set to the specified character.
|
CSVFormat |
CSVFormat.withDelimiter(char delimiter) |
Returns a new CSVFormat with the delimiter of the format set to the specified character.
|
CSVFormat |
CSVFormat.withEscape(char escape) |
Returns a new CSVFormat with the escape character of the format set to the specified character.
|
CSVFormat |
CSVFormat.withEscape(java.lang.Character escape) |
Returns a new CSVFormat with the escape character of the format set to the specified character.
|
CSVFormat |
CSVFormat.withFirstRecordAsHeader() |
Returns a new CSVFormat using the first record as header.
|
CSVFormat |
CSVFormat.withHeader(java.lang.Class<? extends java.lang.Enum<?>> headerEnum) |
Returns a new CSVFormat with the header of the format defined by the enum class.
|
CSVFormat |
CSVFormat.withHeader(java.lang.String... header) |
Returns a new CSVFormat with the header of the format set to the given values.
|
CSVFormat |
CSVFormat.withHeaderComments(java.lang.Object... headerComments) |
Returns a new CSVFormat with the header comments of the format set to the given values.
|
CSVFormat |
CSVFormat.withIgnoreEmptyLines() |
Returns a new CSVFormat with the empty line skipping behavior of the format set to true .
|
CSVFormat |
CSVFormat.withIgnoreEmptyLines(boolean ignoreEmptyLines) |
Returns a new CSVFormat with the empty line skipping behavior of the format set to the given value.
|
CSVFormat |
CSVFormat.withIgnoreHeaderCase() |
Returns a new CSVFormat with the header ignore case behavior set to true .
|
CSVFormat |
CSVFormat.withIgnoreHeaderCase(boolean ignoreHeaderCase) |
Returns a new CSVFormat with whether header names should be accessed ignoring case.
|
CSVFormat |
CSVFormat.withIgnoreSurroundingSpaces() |
Returns a new CSVFormat with the trimming behavior of the format set to true .
|
CSVFormat |
CSVFormat.withIgnoreSurroundingSpaces(boolean ignoreSurroundingSpaces) |
Returns a new CSVFormat with the trimming behavior of the format set to the given value.
|
CSVFormat |
CSVFormat.withNullString(java.lang.String nullString) |
Returns a new CSVFormat with conversions to and from null for strings on input and output.
|
CSVFormat |
CSVFormat.withQuote(char quoteChar) |
Returns a new CSVFormat with the quoteChar of the format set to the specified character.
|
CSVFormat |
CSVFormat.withQuote(java.lang.Character quoteChar) |
Returns a new CSVFormat with the quoteChar of the format set to the specified character.
|
CSVFormat |
CSVFormat.withQuoteMode(QuoteMode quoteModePolicy) |
Returns a new CSVFormat with the output quote policy of the format set to the specified value.
|
CSVFormat |
CSVFormat.withRecordSeparator(char recordSeparator) |
Returns a new CSVFormat with the record separator of the format set to the specified character.
|
CSVFormat |
CSVFormat.withRecordSeparator(java.lang.String recordSeparator) |
Returns a new CSVFormat with the record separator of the format set to the specified String.
|
CSVFormat |
CSVFormat.withSkipHeaderRecord() |
Returns a new CSVFormat with skipping the header record set to true .
|
CSVFormat |
CSVFormat.withSkipHeaderRecord(boolean skipHeaderRecord) |
Returns a new CSVFormat with whether to skip the header record.
|
CSVFormat |
CSVFormat.withSystemRecordSeparator() |
Returns a new CSVFormat with the record separator of the format set to the operating system's line
separator string, typically CR+LF on Windows and LF on Linux.
|
CSVFormat |
CSVFormat.withTrailingDelimiter() |
Returns a new CSVFormat to add a trailing delimiter.
|
CSVFormat |
CSVFormat.withTrailingDelimiter(boolean trailingDelimiter) |
Returns a new CSVFormat with whether to add a trailing delimiter.
|
CSVFormat |
CSVFormat.withTrim() |
Returns a new CSVFormat to trim leading and trailing blanks.
|
CSVFormat |
CSVFormat.withTrim(boolean trim) |
Returns a new CSVFormat with whether to trim leading and trailing blanks.
|