Package | Description |
---|---|
org.supercsv.prefs |
Provides the configuration classes used when instantiating readers and writers.
|
org.supercsv.quote |
Provides the classes used to quote CSV for output.
|
Modifier and Type | Method | Description |
---|---|---|
QuoteMode |
CsvPreference.getQuoteMode() |
Returns the quote mode.
|
Modifier and Type | Method | Description |
---|---|---|
CsvPreference.Builder |
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).
|
Modifier and Type | Class | Description |
---|---|---|
class |
AlwaysQuoteMode |
When using AlwaysQuoteMode surrounding quotes are always applied.
|
class |
ColumnQuoteMode |
When using ColumnQuoteMode surrounding quotes are only applied if required to escape special characters (per
RFC4180), or if a particular column should always be quoted.
|
class |
NormalQuoteMode |
When using NormalQuoteMode surrounding quotes are only applied if required to escape special characters (per
RFC4180).
|
Copyright © 2007–2018 Super CSV. All rights reserved.