Uses of Interface
com.fasterxml.jackson.databind.JsonSerializable
Packages that use JsonSerializable
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 JsonSerializable in com.fasterxml.jackson.databind
Classes in com.fasterxml.jackson.databind that implement JsonSerializableModifier and TypeClassDescriptionclassBase class for all JSON nodes, which form the basis of JSON Tree Model that Jackson implements.static classBase class with minimal implementation, as well as couple of extension methods that core Jackson databinding makes use of. -
Uses of JsonSerializable in com.fasterxml.jackson.databind.node
Classes in com.fasterxml.jackson.databind.node that implement JsonSerializableModifier and TypeClassDescriptionclassNode class that represents Arrays mapped from JSON content.classAbstract base class common to all standardJsonNodeimplementations.classNumeric node that contains simple 64-bit integer values.classValue node that contains Base64 encoded binary value, which will be output and stored as Json String value.classThis concrete value class is used to contain boolean (true / false) values.classContainerNode<T extends ContainerNode<T>>This intermediate base class is used for all container nodes, specifically, array and object nodes.classNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classJsonNodeimplementation for efficiently containing 32-bit `float` values.classNumeric node that contains simple 32-bit integer values.classNumeric node that contains simple 64-bit integer values.final classThis singleton node class is generated to denote "missing nodes" along paths that do not exist.classThis singleton value class is used to contain explicit JSON null value.classIntermediate value node used for numeric nodes.classNode that maps to JSON Object structures in JSON content.classValue node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper).classNumeric node that contains simple 16-bit integer values.classValue node that contains a text value.classThis 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 JsonSerializable in com.fasterxml.jackson.databind.ser.std
Subclasses with type arguments of type JsonSerializable in com.fasterxml.jackson.databind.ser.stdModifier and TypeClassDescriptionclassGeneric handler for types that implementJsonSerializable.Methods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonSerializableModifier and TypeMethodDescriptionbooleanSerializableSerializer.isEmpty(SerializerProvider serializers, JsonSerializable value) voidSerializableSerializer.serialize(JsonSerializable value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider serializers) final voidSerializableSerializer.serializeWithType(JsonSerializable value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider serializers, TypeSerializer typeSer) -
Uses of JsonSerializable in com.fasterxml.jackson.databind.type
Classes in com.fasterxml.jackson.databind.type that implement JsonSerializableModifier and TypeClassDescriptionfinal classArray types represent Java arrays, both primitive and object valued.classType that represents things that act similar toCollection; but may or may not be instances of that interface.final classType that represents Java Collection types (Lists, Sets).classSpecializedSimpleTypefor types that are allow iteration over Collection(-like) types: this includes types likeIterator.classType 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 classType that represents "true" Java Map types.classHelper type used when introspecting bindings for already resolved types, needed for specialization.classSpecializedSimpleTypefor types that are referential types, that is, values that can be dereferenced to another value (or null), of different type.classInternal placeholder type used for self-references.classSimple types are defined as anything other than one of recognized container types (arrays, Collections, Maps).class -
Uses of JsonSerializable in com.fasterxml.jackson.databind.util
Classes in com.fasterxml.jackson.databind.util that implement JsonSerializableModifier and TypeClassDescriptionclassContainer class that can be used to wrap any Object instances (including nulls), and will serialize embedded in JSONP wrapping.classGeneral-purpose wrapper class that can be used to decorate serialized value with arbitrary literal prefix and suffix.classHelper 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 com.fasterxml.jackson.databind.util with parameters of type JsonSerializable