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<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). |
Modifier and Type | Method and Description |
---|---|
static StreamReadCapability |
StreamReadCapability.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamReadCapability[] |
StreamReadCapability.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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).
|
Modifier and Type | Field and Description |
---|---|
protected static JacksonFeatureSet<StreamReadCapability> |
ParserBase.JSON_READ_CAPABILITIES |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
ReaderBasedJsonParser.getReadCapabilities() |
JacksonFeatureSet<StreamReadCapability> |
UTF8DataInputJsonParser.getReadCapabilities() |
JacksonFeatureSet<StreamReadCapability> |
UTF8StreamJsonParser.getReadCapabilities() |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
NonBlockingJsonParserBase.getReadCapabilities() |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamReadCapability> |
JsonParserDelegate.getReadCapabilities() |
Copyright © 2008–2022 FasterXML. All rights reserved.