Uses of Class
com.fasterxml.jackson.databind.node.ValueNode
-
Packages that use ValueNode Package Description com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations 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 classBigIntegerNodeNumeric node that contains simple 64-bit integer values.classBinaryNodeValue node that contains Base64 encoded binary value, which will be output and stored as Json String value.classBooleanNodeThis concrete value class is used to contain boolean (true / false) values.classDecimalNodeNumeric node that contains values that do not fit in simple integer (int, long) or floating point (double) values.classDoubleNodeNumeric node that contains 64-bit ("double precision") floating point values simple 32-bit integer values.classFloatNodeJsonNodeimplementation for efficiently containing 32-bit `float` values.classIntNodeNumeric node that contains simple 32-bit integer values.classLongNodeNumeric node that contains simple 64-bit integer values.classMissingNodeThis singleton node class is generated to denote "missing nodes" along paths that do not exist.classNullNodeThis singleton value class is used to contain explicit JSON null value.classNumericNodeIntermediate value node used for numeric nodes.classPOJONodeValue node that contains a wrapped POJO, to be serialized as a JSON constructed through data mapping (usually done by callingObjectMapper).classShortNodeNumeric node that contains simple 16-bit integer values.classTextNodeValue node that contains a text value.Methods in com.fasterxml.jackson.databind.node that return ValueNode Modifier and Type Method Description ValueNodeJsonNodeCreator. binaryNode(byte[] data)ValueNodeJsonNodeCreator. binaryNode(byte[] data, int offset, int length)ValueNodeJsonNodeCreator. booleanNode(boolean v)ValueNodeJsonNodeCreator. nullNode()ValueNodeContainerNode. numberNode(Byte v)ValueNodeContainerNode. numberNode(Double v)ValueNodeContainerNode. numberNode(Float v)ValueNodeContainerNode. numberNode(Integer v)ValueNodeContainerNode. numberNode(Long v)ValueNodeContainerNode. numberNode(Short v)ValueNodeContainerNode. numberNode(BigDecimal v)ValueNodeContainerNode. numberNode(BigInteger v)ValueNodeJsonNodeCreator. numberNode(byte v)ValueNodeJsonNodeCreator. numberNode(double v)ValueNodeJsonNodeCreator. numberNode(float v)ValueNodeJsonNodeCreator. numberNode(int v)ValueNodeJsonNodeCreator. numberNode(long v)ValueNodeJsonNodeCreator. numberNode(short v)ValueNodeJsonNodeCreator. numberNode(Byte value)ValueNodeJsonNodeCreator. numberNode(Double value)ValueNodeJsonNodeCreator. numberNode(Float value)ValueNodeJsonNodeCreator. numberNode(Integer value)ValueNodeJsonNodeCreator. numberNode(Long value)ValueNodeJsonNodeCreator. numberNode(Short value)ValueNodeJsonNodeCreator. numberNode(BigDecimal v)ValueNodeJsonNodeCreator. numberNode(BigInteger v)ValueNodeJsonNodeFactory. numberNode(Byte value)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(Double value)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(Float value)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(Integer value)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(Long v)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(Short value)Alternate factory method that will handle wrapper value, which may be null.ValueNodeJsonNodeFactory. numberNode(BigDecimal v)Factory method for getting an instance of JSON numeric value that expresses given unlimited precision floating point valueValueNodeJsonNodeFactory. numberNode(BigInteger v)Factory method for getting an instance of JSON numeric value that expresses given unlimited range integer valueValueNodeContainerNode. pojoNode(Object pojo)ValueNodeJsonNodeCreator. pojoNode(Object pojo)ValueNodeJsonNodeFactory. pojoNode(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.ValueNodeContainerNode. rawValueNode(RawValue value)ValueNodeJsonNodeCreator. rawValueNode(RawValue value)Factory method to use for adding "raw values"; pre-encoded values that are included exactly as-is when node is serialized.ValueNodeJsonNodeFactory. rawValueNode(RawValue value)ValueNodeJsonNodeCreator. textNode(String text)
-