Uses of Class
tools.jackson.databind.node.NumericNode
Packages that use NumericNode
-
Uses of NumericNode in tools.jackson.databind.node
Subclasses of NumericNode in tools.jackson.databind.nodeModifier and TypeClassDescriptionclass
Numeric node that contains simple 64-bit integer values.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.class
Numeric node that contains simple 16-bit integer values.Methods in tools.jackson.databind.node that return NumericNodeModifier and TypeMethodDescriptionNumericNode.deepCopy()
final NumericNode
ContainerNode.numberNode
(byte v) final NumericNode
ContainerNode.numberNode
(double v) final NumericNode
ContainerNode.numberNode
(float v) final NumericNode
ContainerNode.numberNode
(int v) final NumericNode
ContainerNode.numberNode
(long v) final NumericNode
ContainerNode.numberNode
(short v) JsonNodeFactory.numberNode
(byte v) Factory method for getting an instance of JSON numeric value that expresses given 8-bit valueJsonNodeFactory.numberNode
(double v) Factory method for getting an instance of JSON numeric value that expresses given 64-bit floating point valueJsonNodeFactory.numberNode
(float v) Factory method for getting an instance of JSON numeric value that expresses given 32-bit floating point valueJsonNodeFactory.numberNode
(int v) Factory method for getting an instance of JSON numeric value that expresses given 32-bit integer valueJsonNodeFactory.numberNode
(long v) Factory method for getting an instance of JSON numeric value that expresses given 64-bit integer valueJsonNodeFactory.numberNode
(short v) Factory method for getting an instance of JSON numeric value that expresses given 16-bit integer value