public static class Configuration.Overridden extends Object implements Configuration
Configuration.Default, Configuration.OverriddenDEFAULT, DEFAULT_LEGACY_STYLE_QUOTING, KB, MB| Constructor and Description |
|---|
Overridden(Configuration defaults) |
| Modifier and Type | Method and Description |
|---|---|
int |
bufferSize()
Data buffer size.
|
boolean |
emptyQuotedStringsAsNull() |
boolean |
legacyStyleQuoting()
Adds a default implementation returning
Configuration.DEFAULT_LEGACY_STYLE_QUOTING, this to not requiring
any change to other classes using this interface. |
boolean |
multilineFields()
Whether or not fields are allowed to have newline characters in them, i.e.
|
char |
quotationCharacter()
Character to regard as quotes.
|
boolean |
trimStrings()
Whether or not strings should be trimmed for whitespaces.
|
public Overridden(Configuration defaults)
public char quotationCharacter()
ConfigurationquotationCharacter in interface Configurationpublic int bufferSize()
ConfigurationbufferSize in interface Configurationpublic boolean multilineFields()
ConfigurationmultilineFields in interface Configurationpublic boolean emptyQuotedStringsAsNull()
emptyQuotedStringsAsNull in interface Configurationtrue for treating empty strings, i.e. "" as null, instead of an empty string.public boolean trimStrings()
ConfigurationtrimStrings in interface Configurationpublic boolean legacyStyleQuoting()
ConfigurationConfiguration.DEFAULT_LEGACY_STYLE_QUOTING, this to not requiring
any change to other classes using this interface.legacyStyleQuoting in interface Configuration\" (see Configuration.quotationCharacter())
as an inner quote. Reason why this is configurable is that this interpretation conflicts with
"standard" RFC for CSV parsing, see https://tools.ietf.org/html/rfc4180. This also makes it impossible
to enter some combinations of characters, e.g. """abc\""", when expecting "abc\".Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.