| Modifier and Type | Method and Description |
|---|---|
CSV.Builder |
charset(Charset charset)
Constructs
CSVBuilder with specified charset |
CSV.Builder |
charset(String charsetName)
Constructs
CSVBuilder with specified charset |
CSV |
create()
Constructs
CSV. |
CSV.Builder |
escape(char escapeChar)
Constructs
CSVBuilder with specified escapeChar |
CSV.Builder |
ignoreLeadingWhiteSpace()
Constructs
CSVBuilder. |
CSV.Builder |
lineEnd(String lineEnd)
Constructs
CSVBuilder with specified line terminator |
CSV.Builder |
noEscape()
Constructs
CSVBuilder with no escape char |
CSV.Builder |
noQuote()
Constructs
CSVBuilder with no quote char |
CSV.Builder |
notIgnoreLeadingWhiteSpace()
Constructs
CSVBuilder. |
CSV.Builder |
notStrictQuotes()
Constructs
CSVBuilder. |
CSV.Builder |
quote(char quoteChar)
Constructs
CSVBuilder with specified quoteChar |
CSV.Builder |
separator(char separator)
Constructs
CSVBuilder with specified separator |
CSV.Builder |
skipLines(int skipLines)
Constructs
CSVBuilder with specified number of lines to skip for start reading |
CSV.Builder |
strictQuotes()
Constructs
CSVBuilder. |
public CSV create()
CSV.public CSV.Builder separator(char separator)
CSVBuilder with specified separatorseparator - the delimiter to use for separating entriespublic CSV.Builder quote(char quoteChar)
CSVBuilder with specified quoteCharquoteChar - the character to use for quoted elementspublic CSV.Builder escape(char escapeChar)
CSVBuilder with specified escapeCharescapeChar - the character to use for escaping quotechars or escapecharspublic CSV.Builder lineEnd(String lineEnd)
CSVBuilder with specified line terminatorlineEnd - the line feed terminator to usepublic CSV.Builder skipLines(int skipLines)
CSVBuilder with specified number of lines to skip for start readingskipLines - the line number to skip for start readingpublic CSV.Builder charset(Charset charset)
CSVBuilder with specified charsetpublic CSV.Builder noQuote()
CSVBuilder with no quote charpublic CSV.Builder noEscape()
CSVBuilder with no escape charpublic CSV.Builder strictQuotes()
CSVBuilder. Characters outside the quotes will be ignored.public CSV.Builder notStrictQuotes()
CSVBuilder. Characters outside the quotes will not be ignored.public CSV.Builder ignoreLeadingWhiteSpace()
CSVBuilder. White space before a quote in a field will be ignored.public CSV.Builder notIgnoreLeadingWhiteSpace()
CSVBuilder. White space before a quote in a field will not be ignored.public CSV.Builder charset(String charsetName)
CSVBuilder with specified charsetCopyright © 2014. All rights reserved.