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.json |
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
|
com.fasterxml.jackson.core.util |
Utility classes used by Jackson Core functionality.
|
Modifier and Type | Field and Description |
---|---|
private JsonGenerator.Feature |
StreamWriteFeature._mappedFeature
For backwards compatibility we may need to map to one of existing
JsonParser.Feature s;
if so, this is the feature to enable/disable. |
Modifier and Type | Method and Description |
---|---|
JsonGenerator.Feature |
StreamWriteFeature.mappedFeature() |
static JsonGenerator.Feature |
JsonGenerator.Feature.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonGenerator.Feature[] |
JsonGenerator.Feature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
protected void |
TSFBuilder._legacyDisable(JsonGenerator.Feature f) |
protected void |
TSFBuilder._legacyEnable(JsonGenerator.Feature f) |
JsonFactory |
JsonFactory.configure(JsonGenerator.Feature f,
boolean state)
Method for enabling or disabling specified generator feature
(check
JsonGenerator.Feature for list of features) |
JsonGenerator |
JsonGenerator.configure(JsonGenerator.Feature f,
boolean state)
Method for enabling or disabling specified feature:
check
JsonGenerator.Feature for list of available features. |
JsonFactory |
JsonFactory.disable(JsonGenerator.Feature f)
Method for disabling specified generator feature
(check
JsonGenerator.Feature for list of features) |
abstract JsonGenerator |
JsonGenerator.disable(JsonGenerator.Feature f)
Method for disabling specified features
(check
JsonGenerator.Feature for list of features) |
JsonFactory |
JsonFactory.enable(JsonGenerator.Feature f)
Method for enabling specified generator features
(check
JsonGenerator.Feature for list of features) |
abstract JsonGenerator |
JsonGenerator.enable(JsonGenerator.Feature f)
Method for enabling specified parser features:
check
JsonGenerator.Feature for list of available features. |
boolean |
JsonFactory.isEnabled(JsonGenerator.Feature f)
Check whether specified generator feature is enabled.
|
abstract boolean |
JsonGenerator.isEnabled(JsonGenerator.Feature f)
Method for checking whether given feature is enabled.
|
abstract boolean |
TokenStreamFactory.isEnabled(JsonGenerator.Feature f) |
Constructor and Description |
---|
StreamWriteFeature(JsonGenerator.Feature mappedTo) |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
GeneratorBase.disable(JsonGenerator.Feature f) |
JsonGenerator |
GeneratorBase.enable(JsonGenerator.Feature f) |
boolean |
GeneratorBase.isEnabled(JsonGenerator.Feature f) |
Modifier and Type | Field and Description |
---|---|
private JsonGenerator.Feature |
JsonWriteFeature._mappedFeature
For backwards compatibility we may need to map to one of existing
JsonGenerator.Feature s;
if so, this is the feature to enable/disable. |
Modifier and Type | Method and Description |
---|---|
JsonGenerator.Feature |
JsonWriteFeature.mappedFeature() |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
JsonGeneratorImpl.disable(JsonGenerator.Feature f) |
JsonGenerator |
JsonGeneratorImpl.enable(JsonGenerator.Feature f) |
Constructor and Description |
---|
JsonWriteFeature(boolean defaultState,
JsonGenerator.Feature mapTo) |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
JsonGeneratorDelegate.disable(JsonGenerator.Feature f) |
JsonGenerator |
JsonGeneratorDelegate.enable(JsonGenerator.Feature f) |
boolean |
JsonGeneratorDelegate.isEnabled(JsonGenerator.Feature f) |