Package | Description |
---|---|
com.fasterxml.jackson.dataformat.csv |
Modifier and Type | Method and Description |
---|---|
static CsvParser.Feature |
CsvParser.Feature.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvParser.Feature[] |
CsvParser.Feature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.core.JsonParser |
CsvParser.configure(CsvParser.Feature f,
boolean state)
Method for enabling or disabling specified CSV feature
(check
CsvParser.Feature for list of features) |
CsvMapper |
CsvMapper.configure(CsvParser.Feature f,
boolean state) |
CsvFactory |
CsvFactory.configure(CsvParser.Feature f,
boolean state)
Method for enabling or disabling specified parser feature
(check
CsvParser.Feature for list of features) |
com.fasterxml.jackson.core.JsonParser |
CsvParser.disable(CsvParser.Feature f)
Method for disabling specified CSV feature
(check
CsvParser.Feature for list of features) |
CsvMapper |
CsvMapper.disable(CsvParser.Feature f) |
CsvFactory |
CsvFactory.disable(CsvParser.Feature f)
Method for disabling specified parser features
(check
CsvParser.Feature for list of features) |
com.fasterxml.jackson.core.JsonParser |
CsvParser.enable(CsvParser.Feature f)
Method for enabling specified CSV feature
(check
CsvParser.Feature for list of features) |
CsvMapper |
CsvMapper.enable(CsvParser.Feature f) |
CsvFactory |
CsvFactory.enable(CsvParser.Feature f)
Method for enabling specified parser feature
(check
CsvParser.Feature for list of features) |
boolean |
CsvParser.isEnabled(CsvParser.Feature f)
Method for checking whether specified CSV
CsvParser.Feature
is enabled. |
boolean |
CsvFactory.isEnabled(CsvParser.Feature f)
Checked whether specified parser feature is enabled.
|
Copyright © 2016 FasterXML. All rights reserved.