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.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 |
---|---|
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<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 |
---|---|
static StreamWriteCapability |
StreamWriteCapability.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamWriteCapability[] |
StreamWriteCapability.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
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<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<StreamWriteCapability> |
JsonGeneratorImpl.getWriteCapabilities() |
Modifier and Type | Method and Description |
---|---|
JacksonFeatureSet<StreamWriteCapability> |
JsonGeneratorDelegate.getWriteCapabilities() |
Copyright © 2008–2021 FasterXML. All rights reserved.