static CSV |
CSV.builder() |
Creates a CSV builder object
|
CSV |
CSV.comment(char commentChar) |
Sets the character that signifies a comment
|
static CSV |
CSV.csv() |
Convenience method for quickly retrieving a csv version of a CSV builder
|
CSV |
CSV.delimiter(char delimiter) |
Sets the delimiter character
|
CSV |
CSV.escape(char escape) |
Sets the escape character
|
CSV |
CSV.hasHeader() |
Specifies that the CSV file has a header.
|
CSV |
CSV.hasHeader(boolean hasHeader) |
Specifies whether or not the CSV file has a header.
|
CSV |
CSV.header(String... items) |
Specifies the names of the items in the CSV header.
|
CSV |
CSV.header(List<String> items) |
Specifies the names of the items in the CSV header.
|
CSV |
CSV.keepEmptyCells() |
Specifies that empty cells should be kept
|
CSV |
CSV.quote(char quote) |
Sets the quote character
|
CSV |
CSV.removeEmptyCells() |
Specifies that empty cells should be removed
|
static CSV |
CSV.tsv() |
Convenience method for quickly retrieving a tsv version of a CSV builder
|