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.json.async |
Non-blocking ("async") JSON parser implementation.
|
com.fasterxml.jackson.core.util |
Utility classes used by Jackson Core functionality.
|
Modifier and Type | Field and Description |
---|---|
protected static JacksonFeatureSet<StreamWriteCapability> |
JsonGenerator.DEFAULT_BINARY_WRITE_CAPABILITIES
Default set of
StreamReadCapability ies for typical binary formats,
to use either as-is, or as a base with possible differences. |
protected static JacksonFeatureSet<StreamReadCapability> |
JsonParser.DEFAULT_READ_CAPABILITIES
Default set of
StreamReadCapability ies that may be used as
basis for format-specific readers (or as bogus instance if non-null
set needs to be passed). |
protected static JacksonFeatureSet<StreamWriteCapability> |
JsonGenerator.DEFAULT_TEXTUAL_WRITE_CAPABILITIES
Default set of
StreamReadCapability ies for typical textual formats,
to use either as-is, or as a base with possible differences. |
protected static JacksonFeatureSet<StreamWriteCapability> |
JsonGenerator.DEFAULT_WRITE_CAPABILITIES
Default set of
StreamReadCapability ies that may be used as
basis for format-specific readers (or as bogus instance if non-null
set needs to be passed). |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
JsonParser.getReadCapabilities()
Accessor for getting metadata on capabilities of this parser, based on
underlying data format being read (directly or indirectly).
|
JacksonFeatureSet<StreamWriteCapability> |
JsonGenerator.getWriteCapabilities()
Accessor for getting metadata on capabilities of this generator, based on
underlying data format being read (directly or indirectly).
|
Modifier and Type | Field and Description |
---|---|
protected static JacksonFeatureSet<StreamReadCapability> |
ParserBase.JSON_READ_CAPABILITIES |
Modifier and Type | Field and Description |
---|---|
protected static JacksonFeatureSet<StreamWriteCapability> |
JsonGeneratorImpl.JSON_WRITE_CAPABILITIES
Default capabilities for JSON generator implementations which do not
different from "general textual" defaults
|
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
ReaderBasedJsonParser.getReadCapabilities() |
JacksonFeatureSet<StreamReadCapability> |
UTF8DataInputJsonParser.getReadCapabilities() |
JacksonFeatureSet<StreamReadCapability> |
UTF8StreamJsonParser.getReadCapabilities() |
JacksonFeatureSet<StreamWriteCapability> |
JsonGeneratorImpl.getWriteCapabilities() |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
NonBlockingJsonParserBase.getReadCapabilities() |
Modifier and Type | Method and Description |
---|---|
static <F extends JacksonFeature> |
JacksonFeatureSet.fromBitmask(int bitmask) |
static <F extends JacksonFeature> |
JacksonFeatureSet.fromDefaults(F[] allFeatures)
"Default" factory which will calculate settings based on default-enabled
status of all features.
|
JacksonFeatureSet<StreamReadCapability> |
JsonParserDelegate.getReadCapabilities() |
JacksonFeatureSet<StreamWriteCapability> |
JsonGeneratorDelegate.getWriteCapabilities() |
JacksonFeatureSet<F> |
JacksonFeatureSet.with(F feature)
Mutant factory for getting a set in which specified feature is enabled:
will either return this instance (if no change), or newly created set (if there
is change).
|
JacksonFeatureSet<F> |
JacksonFeatureSet.without(F feature)
Mutant factory for getting a set in which specified feature is disabled:
will either return this instance (if no change), or newly created set (if there
is change).
|
Copyright © 2008–2021 FasterXML. All rights reserved.