Uses of Class
com.fasterxml.jackson.databind.JsonSerializable.Base

Packages that use JsonSerializable.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 JsonSerializable.Base in com.fasterxml.jackson.databind

    Modifier and Type
    Class
    Description
    class 
    Base class for all JSON nodes, which form the basis of JSON Tree Model that Jackson implements.
  • Uses of JsonSerializable.Base in com.fasterxml.jackson.databind.node

    Modifier and Type
    Class
    Description
    class 
    Node class that represents Arrays mapped from JSON content.
    class 
    Abstract base class common to all standard JsonNode 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 
    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 integer (int, long) or 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 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 calling ObjectMapper).
    class 
    Numeric node that contains simple 16-bit integer values.
    class 
    Value node that contains a text 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".