Uses of Class
org.supercsv.prefs.CsvPreference.Builder
Packages that use CsvPreference.Builder
Package
Description
Provides the configuration classes used when instantiating readers and writers.
-
Uses of CsvPreference.Builder in org.supercsv.prefs
Methods in org.supercsv.prefs that return CsvPreference.BuilderModifier and TypeMethodDescriptionCsvPreference.Builder.ignoreEmptyLines
(boolean ignoreEmptyLines) Flag indicating whether empty lines (i.e.CsvPreference.Builder.maxLinesPerRow
(int maxLinesPerRow) The maximum number of lines that a row can span before an exception is thrown (only applicable when reading CSV).CsvPreference.Builder.skipComments
(CommentMatcher commentMatcher) Enables the skipping of comments.CsvPreference.Builder.surroundingSpacesNeedQuotes
(boolean surroundingSpacesNeedQuotes) Flag indicating whether spaces at the beginning or end of a cell should be ignored if they're not surrounded by quotes (applicable to both reading and writing CSV).CsvPreference.Builder.useEncoder
(CsvEncoder encoder) Uses a custom CsvEncoder to escape CSV for writing.CsvPreference.Builder.useQuoteMode
(QuoteMode quoteMode) Uses a custom QuoteMode to determine if surrounding quotes should be applied when writing (only applicable if a column doesn't contain any special characters and wouldn't otherwise be quoted).Constructors in org.supercsv.prefs with parameters of type CsvPreference.BuilderModifierConstructorDescriptionprivate
CsvPreference
(CsvPreference.Builder builder) Constructs a new CsvPreference from a Builder.