Uses of Class
com.fasterxml.jackson.databind.node.NumericNode
-
Packages that use NumericNode Package Description com.fasterxml.jackson.databind.node Contains concreteJsonNode
implementations Jackson uses for the Tree model. -
-
Uses of NumericNode in com.fasterxml.jackson.databind.node
Subclasses of NumericNode in com.fasterxml.jackson.databind.node Modifier and Type Class Description class
BigIntegerNode
Numeric node that contains simple 64-bit integer values.class
DecimalNode
Numeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.class
DoubleNode
Numeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.class
FloatNode
JsonNode
implementation for efficiently containing 32-bit `float` values.class
IntNode
Numeric node that contains simple 32-bit integer values.class
LongNode
Numeric node that contains simple 64-bit integer values.class
ShortNode
Numeric node that contains simple 16-bit integer values.Methods in com.fasterxml.jackson.databind.node that return NumericNode Modifier and Type Method Description NumericNode
ContainerNode. numberNode(byte v)
NumericNode
ContainerNode. numberNode(double v)
NumericNode
ContainerNode. numberNode(float v)
NumericNode
ContainerNode. numberNode(int v)
NumericNode
ContainerNode. numberNode(long v)
NumericNode
ContainerNode. numberNode(short v)
NumericNode
JsonNodeFactory. numberNode(byte v)
Factory method for getting an instance of JSON numeric value that expresses given 8-bit valueNumericNode
JsonNodeFactory. numberNode(double v)
Factory method for getting an instance of JSON numeric value that expresses given 64-bit floating point valueNumericNode
JsonNodeFactory. numberNode(float v)
Factory method for getting an instance of JSON numeric value that expresses given 32-bit floating point valueNumericNode
JsonNodeFactory. numberNode(int v)
Factory method for getting an instance of JSON numeric value that expresses given 32-bit integer valueNumericNode
JsonNodeFactory. numberNode(long v)
Factory method for getting an instance of JSON numeric value that expresses given 64-bit integer valueNumericNode
JsonNodeFactory. numberNode(short v)
Factory method for getting an instance of JSON numeric value that expresses given 16-bit integer value
-