Uses of Class
org.codehaus.jackson.node.NumericNode
Packages that use NumericNode
-
Uses of NumericNode in org.codehaus.jackson.node
Subclasses of NumericNode in org.codehaus.jackson.nodeModifier and TypeClassDescriptionfinal classNumeric node that contains simple 64-bit integer values.final classNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.final classNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.final classNumeric node that contains simple 32-bit integer values.final classNumeric node that contains simple 64-bit integer values.Methods in org.codehaus.jackson.node that return NumericNodeModifier and TypeMethodDescriptionfinal 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) final NumericNodeContainerNode.numberNode(BigDecimal 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 valueJsonNodeFactory.numberNode(BigDecimal v) Factory method for getting an instance of JSON numeric value that expresses given unlimited precision floating point valueJsonNodeFactory.numberNode(BigInteger v) Factory method for getting an instance of JSON numeric value that expresses given unlimited range integer value