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 TypeClassDescriptionclassNumeric node that contains simple 64-bit integer values.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.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.classNumeric node that contains simple 16-bit integer values.Methods in tools.jackson.databind.node that return NumericNodeModifier and TypeMethodDescriptionNumericNode.deepCopy()final NumericNodeContainerNode.numberNode(byte v) final NumericNodeContainerNode.numberNode(double v) final NumericNodeContainerNode.numberNode(float v) final NumericNodeContainerNode.numberNode(int v) final NumericNodeContainerNode.numberNode(long v) final NumericNodeContainerNode.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