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.
|
com.fasterxml.jackson.databind |
Basic data binding (mapping) functionality that
allows for reading JSON content into Java Objects (POJOs)
and JSON Trees (
JsonNode ), as well as
writing Java Objects and trees as JSON. |
com.fasterxml.jackson.jaxrs.base | |
com.fasterxml.jackson.jaxrs.cfg |
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) |
Modifier and Type | Method and Description |
---|---|
ObjectMapper |
ObjectMapper.configure(JsonParser.Feature f,
boolean state)
Method for changing state of specified
JsonParser.Feature s
for parser instances this object mapper creates. |
ObjectMapper |
ObjectMapper.disable(JsonParser.Feature... features)
Method for disabling specified
JsonParser.Feature s
for parser instances this object mapper creates. |
ObjectMapper |
ObjectMapper.enable(JsonParser.Feature... features)
Method for enabling specified
JsonParser.Feature s
for parser instances this object mapper creates. |
boolean |
Module.SetupContext.isEnabled(JsonParser.Feature f) |
boolean |
ObjectReader.isEnabled(JsonParser.Feature f) |
boolean |
ObjectMapper.isEnabled(JsonParser.Feature f) |
boolean |
ObjectWriter.isEnabled(JsonParser.Feature f)
Deprecated.
|
boolean |
DeserializationConfig.isEnabled(JsonParser.Feature f,
JsonFactory factory) |
ObjectReader |
ObjectReader.with(JsonParser.Feature feature)
Method for constructing a new reader instance that is configured
with specified feature enabled.
|
DeserializationConfig |
DeserializationConfig.with(JsonParser.Feature feature)
Fluent factory method that will construct and return a new configuration
object instance with specified features enabled.
|
ObjectReader |
ObjectReader.withFeatures(JsonParser.Feature... features)
Method for constructing a new reader instance that is configured
with specified features enabled.
|
DeserializationConfig |
DeserializationConfig.withFeatures(JsonParser.Feature... features)
Fluent factory method that will construct and return a new configuration
object instance with specified features enabled.
|
ObjectReader |
ObjectReader.without(JsonParser.Feature feature)
Method for constructing a new reader instance that is configured
with specified feature disabled.
|
DeserializationConfig |
DeserializationConfig.without(JsonParser.Feature feature)
Fluent factory method that will construct and return a new configuration
object instance with specified feature disabled.
|
ObjectReader |
ObjectReader.withoutFeatures(JsonParser.Feature... features)
Method for constructing a new reader instance that is configured
with specified features disabled.
|
DeserializationConfig |
DeserializationConfig.withoutFeatures(JsonParser.Feature... features)
Fluent factory method that will construct and return a new configuration
object instance with specified features disabled.
|
Modifier and Type | Method and Description |
---|---|
THIS |
ProviderBase.configure(JsonParser.Feature f,
boolean state) |
THIS |
ProviderBase.disable(JsonParser.Feature f) |
THIS |
ProviderBase.enable(JsonParser.Feature f) |
Modifier and Type | Method and Description |
---|---|
void |
MapperConfiguratorBase.configure(JsonParser.Feature f,
boolean state) |
Copyright © 2019 JBoss by Red Hat. All rights reserved.