Uses of Class
org.codehaus.jackson.node.ValueNode
-
Packages that use ValueNode Package Description org.codehaus.jackson.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model. -
-
Uses of ValueNode in org.codehaus.jackson.node
Subclasses of ValueNode in org.codehaus.jackson.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.classIntNodeNumeric node that contains simple 32-bit integer values.classLongNodeNumeric node that contains simple 64-bit integer values.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).classTextNodeValue node that contains a text value.Methods in org.codehaus.jackson.node that return ValueNode Modifier and Type Method Description 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 value)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.
-