JSON
Version 1.0

Uses of Class
org.codehaus.jackson.map.impl.NumericNode

Packages that use NumericNode
org.codehaus.jackson.map.impl   
 

Uses of NumericNode in org.codehaus.jackson.map.impl
 

Subclasses of NumericNode in org.codehaus.jackson.map.impl
 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 org.codehaus.jackson.map.impl that return NumericNode
 NumericNode JsonTypeMapperBase.numberNode(BigDecimal v)
           
 NumericNode JsonTypeMapperBase.numberNode(double v)
           
 NumericNode JsonTypeMapperBase.numberNode(int v)
           
 NumericNode JsonTypeMapperBase.numberNode(long v)
           
 


JSON
Version 1.0

Apache License, Version 2.0