Package | Description |
---|---|
com.fasterxml.jackson.core |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonGenerator )
instances. |
com.fasterxml.jackson.core.base |
Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
|
com.fasterxml.jackson.core.util |
Utility classes used by Jackson Core functionality.
|
Modifier and Type | Method and Description |
---|---|
static JsonParser.Feature |
JsonParser.Feature.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonParser.Feature[] |
JsonParser.Feature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
JsonParser |
JsonParser.configure(JsonParser.Feature f,
boolean state)
Method for enabling or disabling specified feature
(check
JsonParser.Feature for list of features) |
JsonFactory |
JsonFactory.configure(JsonParser.Feature f,
boolean state)
Method for enabling or disabling specified parser feature
(check
JsonParser.Feature for list of features) |
JsonParser |
JsonParser.disable(JsonParser.Feature f)
Method for disabling specified feature
(check
JsonParser.Feature for list of features) |
JsonFactory |
JsonFactory.disable(JsonParser.Feature f)
Method for disabling specified parser features
(check
JsonParser.Feature for list of features) |
JsonParser |
JsonParser.enable(JsonParser.Feature f)
Method for enabling specified parser feature
(check
JsonParser.Feature for list of features) |
JsonFactory |
JsonFactory.enable(JsonParser.Feature f)
Method for enabling specified parser feature
(check
JsonParser.Feature for list of features) |
boolean |
JsonParser.isEnabled(JsonParser.Feature f)
Method for checking whether specified
JsonParser.Feature is enabled. |
boolean |
JsonFactory.isEnabled(JsonParser.Feature f)
Checked whether specified parser feature is enabled.
|
Modifier and Type | Method and Description |
---|---|
JsonParser |
ParserBase.disable(JsonParser.Feature f) |
JsonParser |
ParserBase.enable(JsonParser.Feature f) |
Modifier and Type | Method and Description |
---|---|
JsonParser |
JsonParserDelegate.disable(JsonParser.Feature f) |
JsonParser |
JsonParserDelegate.enable(JsonParser.Feature f) |
boolean |
JsonParserDelegate.isEnabled(JsonParser.Feature f) |
Copyright © 2008-2016 FasterXML. All Rights Reserved.