| 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.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.databind.cfg |
Package that contains most of configuration-related classes;
exception being couple of most-commonly used configuration
things (like Feature enumerations) that are at the
main level (
com.fasterxml.jackson.databind). |
| Modifier and Type | Method and Description |
|---|---|
static StreamWriteFeature |
StreamWriteFeature.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamWriteFeature[] |
StreamWriteFeature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
B |
TSFBuilder.configure(StreamWriteFeature f,
boolean state) |
B |
TSFBuilder.disable(StreamWriteFeature f) |
B |
TSFBuilder.disable(StreamWriteFeature first,
StreamWriteFeature... other) |
B |
TSFBuilder.disable(StreamWriteFeature first,
StreamWriteFeature... other) |
B |
TSFBuilder.enable(StreamWriteFeature f) |
B |
TSFBuilder.enable(StreamWriteFeature first,
StreamWriteFeature... other) |
B |
TSFBuilder.enable(StreamWriteFeature first,
StreamWriteFeature... other) |
boolean |
JsonFactory.isEnabled(StreamWriteFeature f)
Check whether specified stream write feature is enabled.
|
boolean |
JsonGenerator.isEnabled(StreamWriteFeature f)
Method for checking whether given feature is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ObjectMapper.isEnabled(StreamWriteFeature f) |
boolean |
ObjectWriter.isEnabled(StreamWriteFeature f) |
ObjectWriter |
ObjectWriter.with(StreamWriteFeature feature) |
ObjectWriter |
ObjectWriter.without(StreamWriteFeature feature) |
| Modifier and Type | Method and Description |
|---|---|
B |
MapperBuilder.configure(StreamWriteFeature feature,
boolean state) |
B |
MapperBuilder.disable(StreamWriteFeature... features) |
B |
MapperBuilder.enable(StreamWriteFeature... features) |
Copyright © 2022 JBoss by Red Hat. All rights reserved.