Package | Description |
---|---|
com.fasterxml.jackson.databind.node |
Contains concrete
JsonNode implementations
Jackson uses for the Tree model. |
Modifier and Type | Class and Description |
---|---|
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 |
FloatNode
JsonNode implementation for efficiently containing 32-bit
`float` values. |
class |
IntNode
Numeric node that contains simple 32-bit integer values.
|
class |
LongNode
Numeric node that contains simple 64-bit integer values.
|
class |
ShortNode
Numeric node that contains simple 16-bit integer values.
|
Modifier and Type | Method and Description |
---|---|
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 |
ContainerNode.numberNode(BigInteger 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(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 © 2014–2015 FasterXML. All rights reserved.