- All Implemented Interfaces:
Serializable
,Iterable<JsonNode>
,tools.jackson.core.tree.ObjectTreeNode
,tools.jackson.core.TreeNode
,JacksonSerializable
,JsonNodeCreator
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class tools.jackson.databind.JsonNode
JsonNode.OverwriteMode
Nested classes/interfaces inherited from interface tools.jackson.databind.JacksonSerializable
JacksonSerializable.Base
-
Field Summary
FieldsFields inherited from class tools.jackson.databind.node.ContainerNode
_nodeFactory
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected JsonNode
_at
(tools.jackson.core.JsonPointer ptr) Helper method used by other methods for traversing the next step of given path expression, and returning matching value node if any: if no match,null
is returned.protected boolean
_childrenEqual
(ObjectNode other) Helper method for encapsulating details of accessing child node entries to serialize.protected ObjectNode
protected String
Method for implementation classes to return a short description of contained value, to be used in error messages.protected ArrayNode
_withArray
(tools.jackson.core.JsonPointer origPtr, tools.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) protected ArrayNode
_withArrayAddTailProperty
(tools.jackson.core.JsonPointer tail, boolean preferIndex) protected ObjectNode
_withObject
(tools.jackson.core.JsonPointer origPtr, tools.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) protected ObjectNode
_withObjectAddTailProperty
(tools.jackson.core.JsonPointer tail, boolean preferIndex) tools.jackson.core.JsonToken
asToken()
Method that can be used for efficient type detection when using stream abstraction for traversing nodes.deepCopy()
Method that can be called to get a node that is guaranteed not to allow changing of this node through mutators on this node or any of its children.boolean
Equality for node objects is defined as full (deep) value equality.boolean
equals
(Comparator<JsonNode> comparator, JsonNode o) Entry method for invoking customizable comparison, using passed-inComparator
object.findParent
(String propertyName) Method for finding a JSON Object that contains specified field, within this node or its descendants.findParents
(String propertyName, List<JsonNode> foundSoFar) Method for finding the first JSON Object field with specified name in this node or its child nodes, and returning value it has.findValues
(String propertyName, List<JsonNode> foundSoFar) findValuesAsString
(String propertyName, List<String> foundSoFar) void
forEachEntry
(BiConsumer<? super String, ? super JsonNode> action) If this node is anObjectNode
, performs the given action for each property (key, value pair) until all entries have been processed or the action throws an exception.get
(int index) Method for accessing value of the specified element of an array node.Method for accessing value of the specified field of an object node.Return the type of this nodeint
hashCode()
boolean
isEmpty()
Convenience method that is functionally same as:boolean
isEmpty
(SerializationContext serializers) Method that may be called on instance to determine if it is considered "empty" for purposes of serialization filtering or not.final boolean
isObject()
Method for accessing value of the specified field of an object node.path
(int index) This method is similar toJsonNode.get(int)
, except that instead of returning null if no such element exists (due to index being out of range, or this node not being an array), a "missing node" (node that returns true forJsonNode.isMissingNode()
) will be returned.This method is similar toJsonNode.get(String)
, except that instead of returning null if no such value exists (due to this node not being an object, or object not having value for the specified field), a "missing node" (node that returns true forJsonNode.isMissingNode()
) will be returned.Method to use for accessing all properties (with both names and values) of this JSON Object.Returns a stream of all properties (key, value pairs) of this Node, iff this node is an anObjectNode
.Method for setting value of a property to specified String value.Method for setting value of a property to specified binary valueMethod for setting value of a property to specified numeric value.Method for setting value of a property to specified numeric value.Method for setting value of a property to specified numeric value.Method for setting value of a property to specified numeric value.Method for setting value of a property to specified numeric value.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Method for setting value of a property to specified numeric value.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Method for setting value of a property to specified String value.put
(String propertyName, BigDecimal v) Method for setting value of a property to specified numeric value.put
(String propertyName, BigInteger v) Method for setting value of a property to specified numeric value.Method that will construct an ArrayNode and add it as a property of thisObjectNode
, replacing old value, if any.putIfAbsent
(String propertyName, JsonNode value) Method that will set value of specified property if (and only if) it had no set value previously.Method for setting value of a property to explicitnull
value.Method that will construct an ObjectNode and add it as a property of thisObjectNode
, replacing old value, if any.Method for adding an opaque Java value as the value of specified property.putRawValue
(String propertyName, RawValue raw) Method for removing a property from thisObjectNode
.remove
(Collection<String> propertyNames) Method for removing specified properties out of this ObjectNode.Method for removing all properties, such that this ObjectNode will contain no properties after call.Method for removing matching those children (value) nodes container has that match given predicate.Method for replacing value of specific property with passed value, and returning previous value (or null if none).Method is functionally equivalent topath(propertyName).required()
and can be used to check that this node is anObjectNode
(that is, represents JSON Object value) and has value for specified property with keypropertyName
(but note that value may be explicit JSON null value).Method for removing all properties out of this ObjectNode except for ones specified in argument.retain
(Collection<String> propertyNames) Method for removing all properties out of this ObjectNode except for ones specified in argument.void
serialize
(tools.jackson.core.JsonGenerator g, SerializationContext ctxt) Method that can be called to serialize this node and all of its descendants using specified JSON generator.protected void
serializeFilteredContents
(tools.jackson.core.JsonGenerator g, SerializationContext ctxt, boolean trimEmptyArray, boolean skipNulls) Helper method shared and called byserialize(tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext)
andserializeWithType(tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext, tools.jackson.databind.jsontype.TypeSerializer)
in cases where actual filtering is needed based on configuration.void
serializeWithType
(tools.jackson.core.JsonGenerator g, SerializationContext ctxt, TypeSerializer typeSer) Type information is needed, even if JsonNode instances are "plain" JSON, since they may be mixed with other types.Method that will set specified property, replacing old value, if any.Method for adding given properties to this object node, overriding any existing values for those properties.setAll
(ObjectNode other) Method for adding all properties of the given Object, overriding any existing values for those properties.int
size()
values()
Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.Returns a stream of all value nodes of this Node, iff this node is anArrayNode
orObjectNode
.Short-cut equivalent to:withArrayProperty
(String propName) Method similar toJsonNode.withArray(JsonPointer, OverwriteMode, boolean)
-- basically short-cut to:withObject
(String exprOrProperty) Method that works in one of possible ways, depending on whetherexprOrProperty
is a validJsonPointer
expression or not (valid expression is either empty String""
or starts with leading slash/
character).withObjectProperty
(String propName) Method similar toJsonNode.withObject(JsonPointer, OverwriteMode, boolean)
-- basically short-cut to:Method for removing property from this ObjectNode, and returning instance after removal.without
(Collection<String> propertyNames) Method for removing specified properties out of this ObjectNode.Methods inherited from class tools.jackson.databind.node.ContainerNode
arrayNode, arrayNode, asString, binaryNode, binaryNode, booleanNode, isContainer, missingNode, nullNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, objectNode, pojoNode, rawValueNode, removeNulls, stringNode
Methods inherited from class tools.jackson.databind.node.BaseJsonNode
_jsonPointerIfValid, _reportBigIntegerCoercionFractionFail, _reportCoercionFail, _reportDoubleCoercionRangeFail, _reportFloatCoercionRangeFail, _reportIntCoercionFractionFail, _reportIntCoercionRangeFail, _reportLongCoercionFractionFail, _reportLongCoercionRangeFail, _reportShortCoercionFractionFail, _reportShortCoercionRangeFail, _reportWrongNodeType, _withXxxMayReplace, _withXxxVerifyReplace, asBoolean, asBoolean, asDecimal, asDecimal, asDouble, asDouble, asInt, asInt, asLong, asLong, asString, bigIntegerValue, binaryValue, booleanValue, booleanValue, booleanValueOpt, decimalValue, decimalValue, decimalValueOpt, doubleValue, doubleValue, doubleValueOpt, findPath, floatValue, intValue, intValue, intValueOpt, isEmbeddedValue, isMissingNode, longValue, longValue, longValueOpt, numberType, numberValue, required, shortValue, stringValue, stringValue, stringValueOpt, toPrettyString, toString, traverse, withArray, withObject
Methods inherited from class tools.jackson.databind.JsonNode
_reportRequiredViolation, _reportUnsupportedOperation, _this, asOptional, asText, asText, at, at, canConvertToExactIntegral, canConvertToInt, canConvertToLong, findParents, findValues, findValuesAsString, has, has, hasNonNull, hasNonNull, isArray, isBigDecimal, isBigInteger, isBinary, isBoolean, isDouble, isFloat, isFloatingPointNumber, isInt, isIntegralNumber, isLong, isNull, isNumber, isPojo, isShort, isString, isTextual, isValueNode, iterator, optional, require, requiredAt, requiredAt, requireNonNull, spliterator, textValue, withArray, withArray, withObject, withObject
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface tools.jackson.databind.node.JsonNodeCreator
textNode
Methods inherited from interface tools.jackson.core.TreeNode
at, at, isArray, isContainer, isEmbeddedValue, isMissingNode, isNull, isValueNode, numberType, traverse
-
Field Details
-
_children
-
-
Constructor Details
-
ObjectNode
-
ObjectNode
-
-
Method Details
-
_at
Description copied from class:JsonNode
Helper method used by other methods for traversing the next step of given path expression, and returning matching value node if any: if no match,null
is returned. -
_valueDesc
Description copied from class:BaseJsonNode
Method for implementation classes to return a short description of contained value, to be used in error messages.- Specified by:
_valueDesc
in classBaseJsonNode
-
deepCopy
Description copied from class:JsonNode
Method that can be called to get a node that is guaranteed not to allow changing of this node through mutators on this node or any of its children. This means it can either make a copy of this node (and all mutable children and grand children nodes), or node itself if it is immutable.Note: return type is guaranteed to have same type as the node method is called on; which is why method is declared with local generic type.
-
withObject
Description copied from class:JsonNode
Method that works in one of possible ways, depending on whetherexprOrProperty
is a validJsonPointer
expression or not (valid expression is either empty String""
or starts with leading slash/
character). If it is, works as a short-cut to:withObject(JsonPointer.compile(exprOrProperty));
If it is NOT a validJsonPointer
expression, value is taken as a literal Object property name and calls is alias forwithObjectProperty(exprOrProperty);
- Overrides:
withObject
in classJsonNode
- Parameters:
exprOrProperty
-JsonPointer
expression to use (if valid as one), or, if not (no leading "/"), property name to match.- Returns:
ObjectNode
found or created
-
withObjectProperty
Description copied from class:JsonNode
Method similar toJsonNode.withObject(JsonPointer, OverwriteMode, boolean)
-- basically short-cut to:withObject(JsonPointer.compile("/"+propName), OverwriteMode.NULLS, false);
that is, only matches immediate property onObjectNode
and will either use an existingObjectNode
that is value of the property, or create one if no value or value isNullNode
.
Will fail with an exception if:- Node method called on is NOT
ObjectNode
- Property has an existing value that is NOT
NullNode
(explicitnull
)
- Overrides:
withObjectProperty
in classJsonNode
- Parameters:
propName
- Name of property that has or will haveObjectNode
as value- Returns:
ObjectNode
value of given property (existing or created)
- Node method called on is NOT
-
withArray
Description copied from class:JsonNode
Short-cut equivalent to:withArray(JsonPointer.compile(expr), overwriteMode, preferIndex);
-
withArrayProperty
Description copied from class:JsonNode
Method similar toJsonNode.withArray(JsonPointer, OverwriteMode, boolean)
-- basically short-cut to:withArray(JsonPointer.compile("/"+propName), OverwriteMode.NULLS, false);
that is, only matches immediate property onObjectNode
and will either use an existingArrayNode
that is value of the property, or create one if no value or value isNullNode
.
Will fail with an exception if:- Node method called on is NOT
ObjectNode
- Property has an existing value that is NOT
NullNode
(explicitnull
)
- Overrides:
withArrayProperty
in classJsonNode
- Parameters:
propName
- Name of property that has or will haveArrayNode
as value- Returns:
ArrayNode
value of given property (existing or created)
- Node method called on is NOT
-
_withObject
protected ObjectNode _withObject(tools.jackson.core.JsonPointer origPtr, tools.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) - Specified by:
_withObject
in classContainerNode<ObjectNode>
-
_withArray
protected ArrayNode _withArray(tools.jackson.core.JsonPointer origPtr, tools.jackson.core.JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) - Overrides:
_withArray
in classBaseJsonNode
-
_withObjectAddTailProperty
protected ObjectNode _withObjectAddTailProperty(tools.jackson.core.JsonPointer tail, boolean preferIndex) -
_withArrayAddTailProperty
protected ArrayNode _withArrayAddTailProperty(tools.jackson.core.JsonPointer tail, boolean preferIndex) -
isEmpty
Description copied from class:JacksonSerializable.Base
Method that may be called on instance to determine if it is considered "empty" for purposes of serialization filtering or not.- Overrides:
isEmpty
in classJacksonSerializable.Base
-
getNodeType
Description copied from class:JsonNode
Return the type of this node- Specified by:
getNodeType
in classJsonNode
- Returns:
- the node type as a
JsonNodeType
enum value
-
isObject
public final boolean isObject() -
asToken
public tools.jackson.core.JsonToken asToken()Description copied from class:BaseJsonNode
Method that can be used for efficient type detection when using stream abstraction for traversing nodes. Will return the firstJsonToken
that equivalent stream event would produce (for most nodes there is just one token but for structured/container types multiple)- Specified by:
asToken
in interfacetools.jackson.core.TreeNode
- Specified by:
asToken
in classContainerNode<ObjectNode>
-
size
public int size()- Specified by:
size
in interfacetools.jackson.core.TreeNode
- Specified by:
size
in classContainerNode<ObjectNode>
-
isEmpty
public boolean isEmpty()Description copied from class:JsonNode
Convenience method that is functionally same as:size() == 0
for all node types. -
get
Description copied from class:JsonNode
Method for accessing value of the specified element of an array node. For other nodes, null is always returned.For array nodes, index specifies exact location within array and allows for efficient iteration over child elements (underlying storage is guaranteed to be efficiently indexable, i.e. has random-access to elements). If index is less than 0, or equal-or-greater than
node.size()
, null is returned; no exception is thrown for any index.NOTE: if the element value has been explicitly set as
null
(which is different from removal!), aNullNode
will be returned, not null.- Specified by:
get
in interfacetools.jackson.core.TreeNode
- Specified by:
get
in classContainerNode<ObjectNode>
- Returns:
- Node that represent value of the specified element, if this node is an array and has specified element. Null otherwise.
-
get
Description copied from class:JsonNode
Method for accessing value of the specified field of an object node. If this node is not an object (or it does not have a value for specified field name), or if there is no field with such name, null is returned.NOTE: if the property value has been explicitly set as
null
(which is different from removal!), aNullNode
will be returned, not null.- Specified by:
get
in interfacetools.jackson.core.TreeNode
- Specified by:
get
in classContainerNode<ObjectNode>
- Returns:
- Node that represent value of the specified field, if this node is an object and has value for the specified field. Null otherwise.
-
optional
Description copied from class:JsonNode
Method for accessing value of the specified field of an object node. If this node is not an object (or it does not have a value for specified field name), or if there is no field with such name, emptyOptional
is returned.NOTE: if the property value has been explicitly set as
null
(which is different from removal!), an Optional containingNullNode
will be returned, not null. -
path
Description copied from class:JsonNode
This method is similar toJsonNode.get(int)
, except that instead of returning null if no such element exists (due to index being out of range, or this node not being an array), a "missing node" (node that returns true forJsonNode.isMissingNode()
) will be returned. This allows for convenient and safe chained access via path calls. -
path
Description copied from class:JsonNode
This method is similar toJsonNode.get(String)
, except that instead of returning null if no such value exists (due to this node not being an object, or object not having value for the specified field), a "missing node" (node that returns true forJsonNode.isMissingNode()
) will be returned. This allows for convenient and safe chained access via path calls. -
required
Description copied from class:JsonNode
Method is functionally equivalent topath(propertyName).required()
and can be used to check that this node is anObjectNode
(that is, represents JSON Object value) and has value for specified property with keypropertyName
(but note that value may be explicit JSON null value). If this node is Object Node and has value for specified property, matching value is returned; otherwiseIllegalArgumentException
is thrown.- Overrides:
required
in classBaseJsonNode
- Parameters:
propertyName
- Name of property to access- Returns:
- Value of the specified property of this Object node
-
values
Description copied from class:JsonNode
Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node. In case of Object node, field names (keys) are not included, only values. For other types of nodes, returns empty iterator. -
valueStream
Description copied from class:JsonNode
Returns a stream of all value nodes of this Node, iff this node is anArrayNode
orObjectNode
. In case ofObject
node, property names (keys) are not included, only values. For other types of nodes, returns empty stream.- Specified by:
valueStream
in classContainerNode<ObjectNode>
-
propertyNames
- Specified by:
propertyNames
in interfacetools.jackson.core.TreeNode
- Overrides:
propertyNames
in classJsonNode
-
properties
Method to use for accessing all properties (with both names and values) of this JSON Object.- Overrides:
properties
in classJsonNode
- Returns:
- Set of properties, if this node is an
ObjectNode
(JsonNode.isObject()
returnstrue
); emptySet
otherwise.
-
propertyStream
Description copied from class:JsonNode
Returns a stream of all properties (key, value pairs) of this Node, iff this node is an anObjectNode
. For other types of nodes, returns empty stream.- Overrides:
propertyStream
in classJsonNode
-
forEachEntry
Description copied from class:JsonNode
If this node is anObjectNode
, performs the given action for each property (key, value pair) until all entries have been processed or the action throws an exception. Exceptions thrown by the action are relayed to the caller. For other node types, no action is performed.Actions are performed in the order of properties, same as order returned by method
JsonNode.properties()
. This is generally the document order of properties in JSON object.- Overrides:
forEachEntry
in classJsonNode
- Parameters:
action
- Action to perform for each entry
-
equals
Description copied from class:JsonNode
Entry method for invoking customizable comparison, using passed-inComparator
object. Nodes will handle traversal of structured types (arrays, objects), but defer to comparator for scalar value comparisons. If a "natural"Comparator
is passed -- one that simply callsequals()
on one of arguments, passing the other -- implementation is the same as directly callingequals()
on node.Default implementation simply delegates to passed in
comparator
, withthis
as the first argument, andother
as the second argument. -
findValue
Description copied from class:JsonNode
Method for finding the first JSON Object field with specified name in this node or its child nodes, and returning value it has. If no matching field is found in this node or its descendants, returns null.Note that traversal is done in document order (that is, order in which nodes are iterated if using
JsonNode.values()
) -
findValues
- Specified by:
findValues
in classJsonNode
-
findValuesAsString
- Specified by:
findValuesAsString
in classJsonNode
-
findParent
Description copied from class:JsonNode
Method for finding a JSON Object that contains specified field, within this node or its descendants. If no matching field is found in this node or its descendants, returns null.- Specified by:
findParent
in classJsonNode
- Parameters:
propertyName
- Name of field to look for- Returns:
- Value of first matching node found, if any; null if none
-
findParents
- Specified by:
findParents
in classJsonNode
-
serialize
public void serialize(tools.jackson.core.JsonGenerator g, SerializationContext ctxt) throws tools.jackson.core.JacksonException Method that can be called to serialize this node and all of its descendants using specified JSON generator.- Specified by:
serialize
in interfaceJacksonSerializable
- Specified by:
serialize
in classBaseJsonNode
- Throws:
tools.jackson.core.JacksonException
-
serializeWithType
public void serializeWithType(tools.jackson.core.JsonGenerator g, SerializationContext ctxt, TypeSerializer typeSer) throws tools.jackson.core.JacksonException Description copied from class:BaseJsonNode
Type information is needed, even if JsonNode instances are "plain" JSON, since they may be mixed with other types.- Specified by:
serializeWithType
in interfaceJacksonSerializable
- Specified by:
serializeWithType
in classBaseJsonNode
- Throws:
tools.jackson.core.JacksonException
-
serializeFilteredContents
protected void serializeFilteredContents(tools.jackson.core.JsonGenerator g, SerializationContext ctxt, boolean trimEmptyArray, boolean skipNulls) throws tools.jackson.core.JacksonException Helper method shared and called byserialize(tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext)
andserializeWithType(tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext, tools.jackson.databind.jsontype.TypeSerializer)
in cases where actual filtering is needed based on configuration.- Throws:
tools.jackson.core.JacksonException
-
_contentsToSerialize
Helper method for encapsulating details of accessing child node entries to serialize.- Since:
- 2.16
-
set
Method that will set specified property, replacing old value, if any. Note that this is identical toreplace(String, JsonNode)
, except for return value.- Parameters:
propertyName
- Name of property to setvalue
- Value to set property to; if null, will be converted to aNullNode
first (to remove a property, callremove(java.lang.String)
instead)- Returns:
- This node after adding/replacing property value (to allow chaining)
-
setAll
Method for adding given properties to this object node, overriding any existing values for those properties.NOTE:
null
keys are not allowed; (null
values get converted to aNullNode
).- Parameters:
properties
- Properties to add- Returns:
- This node after adding/replacing property values (to allow chaining)
-
setAll
Method for adding all properties of the given Object, overriding any existing values for those properties.- Parameters:
other
- Object of which properties to add to this object- Returns:
- This node after addition (to allow chaining)
-
replace
Method for replacing value of specific property with passed value, and returning previous value (or null if none).- Parameters:
propertyName
- Property of which value to replace: must not benull
value
- Value to set property to, replacing old value if any- Returns:
- Old value of the property; null if there was no such property with value
-
without
Method for removing property from this ObjectNode, and returning instance after removal.- Returns:
- This node after removing property (if any)
-
without
Method for removing specified properties out of this ObjectNode.- Parameters:
propertyNames
- Names of properties to remove- Returns:
- This node after removing entries
-
putIfAbsent
Method that will set value of specified property if (and only if) it had no set value previously. Note that explicitly setnull
is a value. Functionally equivalent to:if (get(propertyName) == null) { set(propertyName, value); return null; } else { return get(propertyName); }
- Parameters:
propertyName
- Name of property to set (must not benull
)value
- Value to set to property (if and only if it had no value previously); if null, will be converted to aNullNode
first.- Returns:
- Old value of the property, if any (in which case value was not changed); null if there was no old value (in which case value is now set)
-
remove
Method for removing a property from thisObjectNode
. Will return previous value of the property, if such property existed; null if not.- Returns:
- Value of specified property, if it existed; null if not
-
remove
Method for removing specified properties out of this ObjectNode.- Parameters:
propertyNames
- Names of properties to remove- Returns:
- This node after removing entries
-
removeAll
Method for removing all properties, such that this ObjectNode will contain no properties after call.- Specified by:
removeAll
in classContainerNode<ObjectNode>
- Returns:
- This node after removing all entries
-
removeIf
Description copied from class:ContainerNode
Method for removing matching those children (value) nodes container has that match given predicate.- Specified by:
removeIf
in classContainerNode<ObjectNode>
- Parameters:
predicate
- Predicate to use for matching: anything matching will be removed- Returns:
- Container node itself (to allow method call chaining)
-
retain
Method for removing all properties out of this ObjectNode except for ones specified in argument.- Parameters:
propertyNames
- Properties to retain in this ObjectNode- Returns:
- This node (to allow call chaining)
-
retain
Method for removing all properties out of this ObjectNode except for ones specified in argument.- Parameters:
propertyNames
- Properties to retain in this ObjectNode- Returns:
- This node (to allow call chaining)
-
putArray
Method that will construct an ArrayNode and add it as a property of thisObjectNode
, replacing old value, if any.NOTE: Unlike all put(...) methods, return value is NOT this
ObjectNode
, but the newly createdArrayNode
instance.- Returns:
- Newly constructed ArrayNode (NOT the old value,
which could be of any type, nor
this
node)
-
putObject
Method that will construct an ObjectNode and add it as a property of thisObjectNode
, replacing old value, if any.NOTE: Unlike all put(...) methods, return value is NOT this
ObjectNode
, but the newly createdObjectNode
instance.- Returns:
- Newly constructed ObjectNode (NOT the old value,
which could be of any type, nor
this
node)
-
putPOJO
Method for adding an opaque Java value as the value of specified property. Value can be serialized like any other property, as long as Jackson can serialize it. Despite term "POJO" this allows use of about any Java type, includingMap
s,Collection
s, as well as Beans (POJOs), primitives/wrappers and evenJsonNode
s. Method is most commonly useful when composing content to serialize from heterogenous sources.NOTE: if using
JsonNode.toString()
(orJsonNode.toPrettyString()
support for serialization may be more limited, compared to serializing node with specifically configuredObjectMapper
.- Parameters:
propertyName
- Name of property to set.pojo
- Java value to set as the property value- Returns:
- This
ObjectNode
(to allow chaining)
-
putRawValue
-
putNull
Method for setting value of a property to explicitnull
value.- Parameters:
propertyName
- Name of property to set.- Returns:
- This
ObjectNode
(to allow chaining)
-
put
Method for setting value of a property to specified numeric value.- Returns:
- This node (to allow chaining)
-
put
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value. The underlyingJsonNode
that will be added is constructed usingJsonNodeFactory.numberNode(int)
, and may be "smaller" (likeShortNode
) in cases where value fits within range of a smaller integral numeric value.- Returns:
- This node (to allow chaining)
-
put
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value. The underlyingJsonNode
that will be added is constructed usingJsonNodeFactory.numberNode(long)
, and may be "smaller" (likeIntNode
) in cases where value fits within range of a smaller integral numeric value.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value. The underlyingJsonNode
that will be added is constructed usingJsonNodeFactory.numberNode(Long)
, and may be "smaller" (likeIntNode
) in cases where value fits within range of a smaller integral numeric value.Note that this is alternative to
put(String, long)
needed to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value.- Returns:
- This node (to allow chaining)
-
put
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value.- Returns:
- This node (to allow chaining)
-
put
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified numeric value.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified String value.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified String value.- Returns:
- This node (to allow chaining)
-
put
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
-
put
Method for setting value of a property to specified binary value- Returns:
- This node (to allow chaining)
-
equals
Description copied from class:JsonNode
Equality for node objects is defined as full (deep) value equality. This means that it is possible to compare complete JSON trees for equality by comparing equality of root nodes.Note: marked as abstract to ensure all implementation classes define it properly and not rely on definition from
Object
. -
_childrenEqual
-
hashCode
public int hashCode()- Specified by:
hashCode
in classBaseJsonNode
-
_put
-