| 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 | Class and Description |
|---|---|
class |
JsonFactory
The main factory class of Jackson package, used to configure and
construct reader (aka parser,
JsonParser)
and writer (aka generator, JsonGenerator)
instances. |
| Modifier and Type | Class and Description |
|---|---|
class |
MappingJsonFactory
Sub-class of
JsonFactory that will create a proper
ObjectCodec to allow seam-less conversions between
JSON content and Java objects (POJOs). |
| Modifier and Type | Method and Description |
|---|---|
TokenStreamFactory |
MapperBuilder.streamFactory() |
Copyright © 2022 JBoss by Red Hat. All rights reserved.