Uses of Class
com.fasterxml.jackson.databind.node.NumericNode

Packages that use NumericNode
com.fasterxml.jackson.databind.node Contains concrete JsonNode 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
 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 IntNode
          Numeric node that contains simple 32-bit integer values.
 class LongNode
          Numeric node that contains simple 64-bit integer values.
 

Methods in com.fasterxml.jackson.databind.node that return NumericNode
 NumericNode JsonNodeFactory.numberNode(BigDecimal v)
          Factory method for getting an instance of JSON numeric value that expresses given unlimited precision floating point value
 NumericNode ContainerNode.numberNode(BigDecimal v)
           
 NumericNode JsonNodeFactory.numberNode(BigInteger v)
          Factory method for getting an instance of JSON numeric value that expresses given unlimited range integer value
 NumericNode JsonNodeFactory.numberNode(byte v)
          Factory method for getting an instance of JSON numeric value that expresses given 8-bit value
 NumericNode ContainerNode.numberNode(byte v)
           
 NumericNode JsonNodeFactory.numberNode(double v)
          Factory method for getting an instance of JSON numeric value that expresses given 64-bit floating point value
 NumericNode ContainerNode.numberNode(double v)
           
 NumericNode JsonNodeFactory.numberNode(float v)
          Factory method for getting an instance of JSON numeric value that expresses given 32-bit floating point value
 NumericNode ContainerNode.numberNode(float v)
           
 NumericNode JsonNodeFactory.numberNode(int v)
          Factory method for getting an instance of JSON numeric value that expresses given 32-bit integer value
 NumericNode ContainerNode.numberNode(int v)
           
 NumericNode JsonNodeFactory.numberNode(long v)
          Factory method for getting an instance of JSON numeric value that expresses given 64-bit integer value
 NumericNode ContainerNode.numberNode(long v)
           
 NumericNode JsonNodeFactory.numberNode(short v)
          Factory method for getting an instance of JSON numeric value that expresses given 16-bit integer value
 NumericNode ContainerNode.numberNode(short v)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.