Uses of Class
tools.jackson.databind.JacksonSerializable.Base
Packages that use JacksonSerializable.Base
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.-
Uses of JacksonSerializable.Base in tools.jackson.databind
Subclasses of JacksonSerializable.Base in tools.jackson.databindModifier and TypeClassDescriptionclassBase class for all JSON nodes, which form the basis of JSON Tree Model that Jackson implements. -
Uses of JacksonSerializable.Base in tools.jackson.databind.node
Subclasses of JacksonSerializable.Base in tools.jackson.databind.nodeModifier 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 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 node class used for numeric nodes that contain floating-point values: provides partial implementation of common methods.classIntermediate node class used for numeric nodes that contain integral values: provides partial implementation of common methods.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 String 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".