Uses of Class
com.fasterxml.jackson.databind.node.ValueNode
Packages that use ValueNode
-
Uses of ValueNode in com.fasterxml.jackson.databind.node
Subclasses of ValueNode in com.fasterxml.jackson.databind.nodeModifier and TypeClassDescriptionclass
Numeric node that contains simple 64-bit integer values.class
Value node that contains Base64 encoded binary value, which will be output and stored as Json String value.class
This concrete value class is used to contain boolean (true / false) values.class
Numeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.class
Numeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.class
JsonNode
implementation for efficiently containing 32-bit `float` values.class
Numeric node that contains simple 32-bit integer values.class
Numeric node that contains simple 64-bit integer values.final class
This singleton node class is generated to denote "missing nodes" along paths that do not exist.class
This singleton value class is used to contain explicit JSON null value.class
Intermediate value node used for numeric nodes.class
Value node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper
).class
Numeric node that contains simple 16-bit integer values.class
Value node that contains a text value.Methods in com.fasterxml.jackson.databind.node that return ValueNodeModifier and TypeMethodDescriptionJsonNodeCreator.binaryNode
(byte[] data) JsonNodeCreator.binaryNode
(byte[] data, int offset, int length) JsonNodeCreator.booleanNode
(boolean v) JsonNodeCreator.nullNode()
final ValueNode
ContainerNode.numberNode
(Byte v) final ValueNode
ContainerNode.numberNode
(Double v) final ValueNode
ContainerNode.numberNode
(Float v) final ValueNode
ContainerNode.numberNode
(Integer v) final ValueNode
ContainerNode.numberNode
(Long v) final ValueNode
ContainerNode.numberNode
(Short v) final ValueNode
ContainerNode.numberNode
(BigDecimal v) final ValueNode
ContainerNode.numberNode
(BigInteger v) JsonNodeCreator.numberNode
(byte v) JsonNodeCreator.numberNode
(double v) JsonNodeCreator.numberNode
(float v) JsonNodeCreator.numberNode
(int v) JsonNodeCreator.numberNode
(long v) JsonNodeCreator.numberNode
(short v) JsonNodeCreator.numberNode
(Byte value) JsonNodeCreator.numberNode
(Double value) JsonNodeCreator.numberNode
(Float value) JsonNodeCreator.numberNode
(Integer value) JsonNodeCreator.numberNode
(Long value) JsonNodeCreator.numberNode
(Short value) JsonNodeCreator.numberNode
(BigDecimal v) JsonNodeCreator.numberNode
(BigInteger v) JsonNodeFactory.numberNode
(Byte value) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.numberNode
(Double value) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.numberNode
(Float value) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.numberNode
(Integer value) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.numberNode
(Long v) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.numberNode
(Short value) Alternate factory method that will handle wrapper value, which may be null.JsonNodeFactory.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 valuefinal ValueNode
Factory method for constructing a wrapper for POJO ("Plain Old Java Object") objects; these will get serialized using data binding, usually as JSON Objects, but in some cases as JSON Strings or other node types.final ValueNode
ContainerNode.rawValueNode
(RawValue value) JsonNodeCreator.rawValueNode
(RawValue value) Factory method to use for adding "raw values"; pre-encoded values that are included exactly as-is when node is serialized.JsonNodeFactory.rawValueNode
(RawValue value)