Uses of Class
com.fasterxml.jackson.core.TreeCodec
-
Packages that use TreeCodec Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused 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.json -
-
Uses of TreeCodec in com.fasterxml.jackson.core
Subclasses of TreeCodec in com.fasterxml.jackson.core Modifier and Type Class Description classObjectCodecAbstract class that defines the interface thatJsonParserandJsonGeneratoruse to serialize and deserialize regular Java objects (POJOs aka Beans). -
Uses of TreeCodec in com.fasterxml.jackson.databind
Subclasses of TreeCodec in com.fasterxml.jackson.databind Modifier and Type Class Description classObjectMapperObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Plain Old Java Objects), or to and from a general-purpose JSON Tree Model (JsonNode), as well as related functionality for performing conversions.classObjectReaderBuilder object that can be used for per-serialization configuration of deserialization parameters, such as root type to use or object to update (instead of constructing new instance). -
Uses of TreeCodec in com.fasterxml.jackson.databind.json
Subclasses of TreeCodec in com.fasterxml.jackson.databind.json Modifier and Type Class Description classJsonMapperJSON-format specificObjectMapperimplementation.
-