| Package | Description | 
|---|---|
| com.fasterxml.jackson.databind.node | Contains concrete  JsonNodeimplementations
 Jackson uses for the Tree model. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | BigIntegerNodeNumeric node that contains simple 64-bit integer values. | 
| class  | DecimalNodeNumeric node that contains values that do not fit in simple
 integer (int, long) or floating point (double) values. | 
| class  | DoubleNodeNumeric node that contains 64-bit ("double precision")
 floating point values simple 32-bit integer values. | 
| class  | FloatNodeJsonNodeimplementation for efficiently containing 32-bit
 `float` values. | 
| class  | IntNodeNumeric node that contains simple 32-bit integer values. | 
| class  | LongNodeNumeric node that contains simple 64-bit integer values. | 
| class  | ShortNodeNumeric node that contains simple 16-bit integer values. | 
| Modifier and Type | Method and Description | 
|---|---|
| NumericNode | ContainerNode. numberNode(byte v) | 
| NumericNode | JsonNodeFactory. numberNode(byte v)Factory method for getting an instance of JSON numeric value
 that expresses given 8-bit value | 
| NumericNode | ContainerNode. numberNode(double 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(float 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(int 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(long 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(short v) | 
| NumericNode | JsonNodeFactory. numberNode(short v)Factory method for getting an instance of JSON numeric value
 that expresses given 16-bit integer value | 
Copyright © 2008–2021 FasterXML. All rights reserved.