Uses of Class
com.fasterxml.jackson.databind.node.ValueNode
-
Packages that use ValueNode Package Description com.fasterxml.jackson.databind.node Contains concreteJsonNode
implementations Jackson uses for the Tree model. -
-
Uses of ValueNode in com.fasterxml.jackson.databind.node
Subclasses of ValueNode in com.fasterxml.jackson.databind.node Modifier and Type Class Description class
BigIntegerNode
Numeric node that contains simple 64-bit integer values.class
BinaryNode
Value node that contains Base64 encoded binary value, which will be output and stored as Json String value.class
BooleanNode
This concrete value class is used to contain boolean (true / false) 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
MissingNode
This singleton node class is generated to denote "missing nodes" along paths that do not exist.class
NullNode
This singleton value class is used to contain explicit JSON null value.class
NumericNode
Intermediate value node used for numeric nodes.class
POJONode
Value node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper
).class
ShortNode
Numeric node that contains simple 16-bit integer values.class
TextNode
Value node that contains a text value.Methods in com.fasterxml.jackson.databind.node that return ValueNode Modifier and Type Method Description ValueNode
JsonNodeCreator. binaryNode(byte[] data)
ValueNode
JsonNodeCreator. binaryNode(byte[] data, int offset, int length)
ValueNode
JsonNodeCreator. booleanNode(boolean v)
ValueNode
JsonNodeCreator. nullNode()
ValueNode
ContainerNode. numberNode(java.lang.Byte v)
ValueNode
ContainerNode. numberNode(java.lang.Double v)
ValueNode
ContainerNode. numberNode(java.lang.Float v)
ValueNode
ContainerNode. numberNode(java.lang.Integer v)
ValueNode
ContainerNode. numberNode(java.lang.Long v)
ValueNode
ContainerNode. numberNode(java.lang.Short v)
ValueNode
ContainerNode. numberNode(java.math.BigDecimal v)
ValueNode
ContainerNode. numberNode(java.math.BigInteger v)
ValueNode
JsonNodeCreator. numberNode(byte v)
ValueNode
JsonNodeCreator. numberNode(double v)
ValueNode
JsonNodeCreator. numberNode(float v)
ValueNode
JsonNodeCreator. numberNode(int v)
ValueNode
JsonNodeCreator. numberNode(long v)
ValueNode
JsonNodeCreator. numberNode(short v)
ValueNode
JsonNodeCreator. numberNode(java.lang.Byte value)
ValueNode
JsonNodeCreator. numberNode(java.lang.Double value)
ValueNode
JsonNodeCreator. numberNode(java.lang.Float value)
ValueNode
JsonNodeCreator. numberNode(java.lang.Integer value)
ValueNode
JsonNodeCreator. numberNode(java.lang.Long value)
ValueNode
JsonNodeCreator. numberNode(java.lang.Short value)
ValueNode
JsonNodeCreator. numberNode(java.math.BigDecimal v)
ValueNode
JsonNodeCreator. numberNode(java.math.BigInteger v)
ValueNode
JsonNodeFactory. numberNode(java.lang.Byte value)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.lang.Double value)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.lang.Float value)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.lang.Integer value)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.lang.Long v)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.lang.Short value)
Alternate factory method that will handle wrapper value, which may be null.ValueNode
JsonNodeFactory. numberNode(java.math.BigDecimal v)
Factory method for getting an instance of JSON numeric value that expresses given unlimited precision floating point valueValueNode
JsonNodeFactory. numberNode(java.math.BigInteger v)
Factory method for getting an instance of JSON numeric value that expresses given unlimited range integer valueValueNode
ContainerNode. pojoNode(java.lang.Object pojo)
ValueNode
JsonNodeCreator. pojoNode(java.lang.Object pojo)
ValueNode
JsonNodeFactory. pojoNode(java.lang.Object pojo)
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.ValueNode
ContainerNode. rawValueNode(RawValue value)
ValueNode
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.ValueNode
JsonNodeFactory. rawValueNode(RawValue value)
ValueNode
JsonNodeCreator. textNode(java.lang.String text)
-