Uses of Class
tools.jackson.databind.node.NumericNode

Packages that use NumericNode
Package
Description
Contains concrete JsonNode implementations Jackson uses for the Tree model.
  • Uses of NumericNode in tools.jackson.databind.node

    Modifier and Type
    Class
    Description
    class 
    Numeric node that contains simple 64-bit integer values.
    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.
    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 
    Numeric node that contains simple 16-bit integer values.
    Modifier and Type
    Method
    Description
    NumericNode.deepCopy()
     
    ContainerNode.numberNode(byte v)
     
    ContainerNode.numberNode(double v)
     
    ContainerNode.numberNode(float v)
     
    ContainerNode.numberNode(int v)
     
    ContainerNode.numberNode(long v)
     
    ContainerNode.numberNode(short v)
     
    JsonNodeFactory.numberNode(byte v)
    Factory method for getting an instance of JSON numeric value that expresses given 8-bit value
    JsonNodeFactory.numberNode(double v)
    Factory method for getting an instance of JSON numeric value that expresses given 64-bit floating point value
    JsonNodeFactory.numberNode(float v)
    Factory method for getting an instance of JSON numeric value that expresses given 32-bit floating point value
    JsonNodeFactory.numberNode(int v)
    Factory method for getting an instance of JSON numeric value that expresses given 32-bit integer value
    JsonNodeFactory.numberNode(long v)
    Factory method for getting an instance of JSON numeric value that expresses given 64-bit integer value
    JsonNodeFactory.numberNode(short v)
    Factory method for getting an instance of JSON numeric value that expresses given 16-bit integer value