Uses of Class
com.fasterxml.jackson.databind.node.NumericNode
-
Packages that use NumericNode Package Description com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations 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 classBigIntegerNodeNumeric node that contains simple 64-bit integer values.classDecimalNodeNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classDoubleNodeNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classFloatNodeJsonNodeimplementation for efficiently containing 32-bit `float` values.classIntNodeNumeric node that contains simple 32-bit integer values.classLongNodeNumeric node that contains simple 64-bit integer values.classShortNodeNumeric node that contains simple 16-bit integer values.Methods in com.fasterxml.jackson.databind.node that return NumericNode Modifier and Type Method Description NumericNodeContainerNode. numberNode(byte v)NumericNodeContainerNode. numberNode(double v)NumericNodeContainerNode. numberNode(float v)NumericNodeContainerNode. numberNode(int v)NumericNodeContainerNode. numberNode(long v)NumericNodeContainerNode. numberNode(short v)NumericNodeJsonNodeFactory. numberNode(byte v)Factory method for getting an instance of JSON numeric value that expresses given 8-bit valueNumericNodeJsonNodeFactory. numberNode(double v)Factory method for getting an instance of JSON numeric value that expresses given 64-bit floating point valueNumericNodeJsonNodeFactory. numberNode(float v)Factory method for getting an instance of JSON numeric value that expresses given 32-bit floating point valueNumericNodeJsonNodeFactory. numberNode(int v)Factory method for getting an instance of JSON numeric value that expresses given 32-bit integer valueNumericNodeJsonNodeFactory. numberNode(long v)Factory method for getting an instance of JSON numeric value that expresses given 64-bit integer valueNumericNodeJsonNodeFactory. numberNode(short v)Factory method for getting an instance of JSON numeric value that expresses given 16-bit integer value
-