Uses of Class
com.opencsv.CSVReaderBuilder
Packages that use CSVReaderBuilder
Package
Description
A very simple CSV parser for Java released under a commercial-friendly license.
-
Uses of CSVReaderBuilder in com.opencsv
Methods in com.opencsv that return CSVReaderBuilderModifier and TypeMethodDescriptionCSVReaderBuilder.withCSVParser
(ICSVParser icsvParser) Sets the parser to use to parse the input.CSVReaderBuilder.withErrorLocale
(Locale errorLocale) Sets the locale for all error messages.CSVReaderBuilder.withFieldAsNull
(CSVReaderNullFieldIndicator indicator) Checks to see if it should treat a field with two separators, two quotes, or both as a null field.CSVReaderBuilder.withKeepCarriageReturn
(boolean keepCR) Sets if the reader will keep or discard carriage returns.CSVReaderBuilder.withLineValidator
(LineValidator lineValidator) Adds aLineValidator
to theCSVReader
.CSVReaderBuilder.withMultilineLimit
(int multilineLimit) Sets the maximum number of lines allowed in a multiline record.CSVReaderBuilder.withRowProcessor
(RowProcessor rowProcessor) Adds aRowProcessor
to theCSVReader
.CSVReaderBuilder.withRowValidator
(RowValidator rowValidator) Adds aRowValidator
to theCSVReader
.CSVReaderBuilder.withSkipLines
(int skipLines) Sets the number of lines to skip before reading.CSVReaderBuilder.withVerifyReader
(boolean verifyReader) Checks to see if theCSVReader
should verify the reader state before reads or not.