Uses of Interface
tools.jackson.databind.JacksonSerializable
Packages that use JacksonSerializable
Package
Description
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.Contains concrete
JsonNode
implementations
Jackson uses for the Tree model.Utility classes for Mapper package.
-
Uses of JacksonSerializable in tools.jackson.databind
Classes in tools.jackson.databind that implement JacksonSerializableModifier and TypeClassDescriptionstatic class
Base class with minimal implementation, as well as couple of extension methods that core Jackson databinding makes use of.class
Base class for all JSON nodes, which form the basis of JSON Tree Model that Jackson implements. -
Uses of JacksonSerializable in tools.jackson.databind.node
Classes in tools.jackson.databind.node that implement JacksonSerializableModifier and TypeClassDescriptionclass
Node class that represents Arrays mapped from JSON content.class
Abstract base class common to all standardJsonNode
implementations.class
Numeric node that contains simple 64-bit integer values.class
Value node that contains Base64 encoded binary value, which will be output and stored as Json String value.class
This concrete value class is used to contain boolean (true / false) values.class
ContainerNode<T extends ContainerNode<T>>
This intermediate base class is used for all container nodes, specifically, array and object nodes.class
Numeric node that contains values that do not fit in simple floating point (double) values.class
Numeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.class
JsonNode
implementation for efficiently containing 32-bit `float` values.class
Numeric node that contains simple 32-bit integer values.class
Numeric node that contains simple 64-bit integer values.final class
This singleton node class is generated to denote "missing nodes" along paths that do not exist.class
This singleton value class is used to contain explicit JSON null value.class
Intermediate node class used for numeric nodes that contain floating-point values: provides partial implementation of common methods.class
Intermediate node class used for numeric nodes that contain integral values: provides partial implementation of common methods.class
Intermediate value node used for numeric nodes.class
Node that maps to JSON Object structures in JSON content.class
Value node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper
).class
Numeric node that contains simple 16-bit integer values.class
Value node that contains a String value.class
This intermediate base class is used for all leaf nodes, that is, all non-container (array or object) nodes, except for the "missing node". -
Uses of JacksonSerializable in tools.jackson.databind.ser.jackson
Methods in tools.jackson.databind.ser.jackson with parameters of type JacksonSerializableModifier and TypeMethodDescriptionboolean
JacksonSerializableSerializer.isEmpty
(SerializationContext serializers, JacksonSerializable value) void
JacksonSerializableSerializer.serialize
(JacksonSerializable value, JsonGenerator gen, SerializationContext serializers) final void
JacksonSerializableSerializer.serializeWithType
(JacksonSerializable value, JsonGenerator gen, SerializationContext serializers, TypeSerializer typeSer) -
Uses of JacksonSerializable in tools.jackson.databind.type
Classes in tools.jackson.databind.type that implement JacksonSerializableModifier and TypeClassDescriptionfinal class
Array types represent Java arrays, both primitive and object valued.class
Type that represents things that act similar toCollection
; but may or may not be instances of that interface.final class
Type that represents Java Collection types (Lists, Sets).class
SpecializedSimpleType
for types that are allow iteration over Collection(-like) types: this includes types likeIterator
.class
Type that represents Map-like types; things that consist of key/value pairs but that do not necessarily implementMap
, but that do not have enough introspection functionality to allow for some level of generic handling.final class
Type that represents "true" Java Map types.class
Helper type used when introspecting bindings for already resolved types, needed for specialization.class
SpecializedSimpleType
for types that are referential types, that is, values that can be dereferenced to another value (or null), of different type.class
Internal placeholder type used for self-references.class
Simple types are defined as anything other than one of recognized container types (arrays, Collections, Maps).class
-
Uses of JacksonSerializable in tools.jackson.databind.util
Classes in tools.jackson.databind.util that implement JacksonSerializableModifier and TypeClassDescriptionclass
Container class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.class
General-purpose wrapper class that can be used to decorate serialized value with arbitrary literal prefix and suffix.class
Helper class used to encapsulate "raw values", pre-encoded textual content that can be output as opaque value with no quoting/escaping, usingJsonGenerator.writeRawValue(String)
.Constructors in tools.jackson.databind.util with parameters of type JacksonSerializable