Class ArrayNode
- All Implemented Interfaces:
TreeNode,JsonSerializable,JsonNodeCreator,Serializable,Iterable<JsonNode>
Note: class was final temporarily for Jackson 2.2.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonNode
JsonNode.OverwriteModeNested classes/interfaces inherited from interface com.fasterxml.jackson.databind.JsonSerializable
JsonSerializable.Base -
Field Summary
Fields inherited from class com.fasterxml.jackson.databind.node.ContainerNode
_nodeFactory -
Constructor Summary
ConstructorsConstructorDescriptionArrayNode(JsonNodeFactory nf, int capacity) ArrayNode(JsonNodeFactory nf, List<JsonNode> children) -
Method Summary
Modifier and TypeMethodDescriptionprotected ArrayNodeprotected JsonNode_at(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,nullis returned.protected boolean_childrenEqual(ArrayNode other) protected ArrayNodeprotected ArrayNodeprotected ArrayNode_withArray(JsonPointer origPtr, JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) protected ArrayNode_withArrayAddTailElement(JsonPointer tail, boolean preferIndex) protected ObjectNode_withObject(JsonPointer origPtr, JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) protected ObjectNode_withObjectAddTailElement(JsonPointer tail, boolean preferIndex) protected void_withXxxSetArrayElement(int index, JsonNode value) add(boolean v) Method for adding specified boolean value at the end of this array.add(byte[] v) Method for adding specified binary value at the end of this array (note: when serializing as JSON, will be output Base64 encoded)add(double v) Method for adding specified number at the end of this array.add(float v) Method for adding specified number at the end of this array.add(int v) Method for adding specified number at the end of this array.add(long v) Method for adding specified number at the end of this array.add(short v) Method for adding specified number at the end of this array.Method for adding specified node at the end of this array.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.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 adding specified String value at the end of this array.add(BigDecimal v) Method for adding specified number at the end of this array.add(BigInteger v) Method for adding specified number at the end of this array.Method for adding all child nodes of given Array, appending to child nodes this array containsaddAll(Collection<? extends JsonNode> nodes) Method for adding given nodes as child nodes of this array node.addArray()Method that will construct an ArrayNode and add it at the end of this array node.addNull()Method that will add a null value at the end of this array node.Method that will construct an ObjectNode and add it at the end of this array node.Method that will construct a POJONode and add it at the end of this array node.addRawValue(RawValue raw) 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.elements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.booleanEquality for node objects is defined as full (deep) value equality.booleanequals(Comparator<JsonNode> comparator, JsonNode o) Entry method for invoking customizable comparison, using passed-inComparatorobject.findParent(String fieldName) Method for finding a JSON Object that contains specified field, within this node or its descendants.findParents(String fieldName, 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 fieldName, List<JsonNode> foundSoFar) findValuesAsText(String fieldName, List<String> foundSoFar) 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 nodeinthashCode()insert(int index, boolean v) Method that will insert specified String at specified position in this array.insert(int index, byte[] v) Method that will insert specified binary value at specified position in this array (note: when written as JSON, will be Base64 encoded)insert(int index, double v) Method that will insert specified numeric value at specified position in this array.insert(int index, float v) Method that will insert specified numeric value at specified position in this array.insert(int index, int v) Method that will insert specified numeric value at specified position in this array.insert(int index, long v) Method that will insert specified numeric value at specified position in this array.insert(int index, short v) Method that will insert specified numeric value at specified position in this array.Method for inserting specified child node as an element of this Array.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.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 that will insert specified String at specified position in this array.insert(int index, BigDecimal v) Method that will insert specified numeric value at specified position in this array.insert(int index, BigInteger v) Method that will insert specified numeric value at specified position in this array.insertArray(int index) Method for creating an array node, inserting it at the specified point in the array, and returning the newly created array (note: NOT 'this' array)insertNull(int index) Method that will insert a null value at specified position in this array.insertObject(int index) Method for creating anObjectNode, appending it at the end of this array, and returning the newly created node (note: NOT 'this' array)insertPOJO(int index, Object pojo) Method that will construct a POJONode and insert it at specified position in this array.insertRawValue(int index, RawValue raw) booleanisArray()Method that returns true if this node is an Array node, false otherwise.booleanisEmpty()Convenience method that is functionally same as:booleanisEmpty(SerializerProvider serializers) Method that may be called on instance to determine if it is considered "empty" for purposes of serialization filtering or not.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.remove(int index) Method for removing an entry from this ArrayNode.Method for removing all elements of this array, leaving the array empty.required(int index) Method is functionally equivalent topath(index).required()and can be used to check that this node is anArrayNode(that is, represents JSON Array value) and has value for specifiedindex(but note that value may be explicit JSON null value).voidserialize(JsonGenerator g, SerializerProvider provider) Method called to serialize node instances using given generator.voidserializeWithType(JsonGenerator g, SerializerProvider provider, TypeSerializer typeSer) Type information is needed, even if JsonNode instances are "plain" JSON, since they may be mixed with other types.set(int index, boolean v) Method for setting value of a field to specified String value.set(int index, byte[] v) Method for setting value of a field to specified binary valueset(int index, double v) Method for setting value of a field to specified numeric value.set(int index, float v) Method for setting value of a field to specified numeric value.set(int index, int v) set(int index, long v) set(int index, short v) Method that will set specified field, replacing old value, if any.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.Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.Method for setting value of a field to specified String value.set(int index, BigDecimal v) Method for setting value of a field to specified numeric value.set(int index, BigInteger v) Method for setting value of a field to specified numeric value.setNull(int index) setRawValue(int index, RawValue raw) intsize()Method that returns number of child nodes this node contains: for Array nodes, number of child elements, for Object nodes, number of fields, and for all other nodes 0.Deprecated.Method that works in one of possible ways, depending on whetherexprOrPropertyis a validJsonPointerexpression or not (valid expression is either empty String""or starts with leading slash/character).Methods inherited from class com.fasterxml.jackson.databind.node.ContainerNode
arrayNode, arrayNode, asText, binaryNode, binaryNode, booleanNode, missingNode, nullNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, objectNode, pojoNode, rawValueNode, textNodeMethods inherited from class com.fasterxml.jackson.databind.node.BaseJsonNode
_bigIntFromBigDec, _jsonPointerIfValid, _reportWrongNodeOperation, _reportWrongNodeType, _withXxxMayReplace, _withXxxVerifyReplace, findPath, numberType, required, toPrettyString, toString, traverse, traverse, withArray, withObjectMethods inherited from class com.fasterxml.jackson.databind.JsonNode
_reportRequiredViolation, _this, asBoolean, asBoolean, asDouble, asDouble, asInt, asInt, asLong, asLong, asText, at, at, bigIntegerValue, binaryValue, booleanValue, canConvertToExactIntegral, canConvertToInt, canConvertToLong, decimalValue, doubleValue, fieldNames, fields, findParents, findValues, findValuesAsText, floatValue, has, has, hasNonNull, hasNonNull, intValue, isBigDecimal, isBigInteger, isBinary, isBoolean, isContainerNode, isDouble, isFloat, isFloatingPointNumber, isInt, isIntegralNumber, isLong, isMissingNode, isNull, isNumber, isObject, isPojo, isShort, isTextual, isValueNode, iterator, longValue, numberValue, properties, require, requiredAt, requiredAt, requireNonNull, shortValue, textValue, withArray, withArray, withArrayProperty, withObject, withObject, withObject, withObjectPropertyMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
ArrayNode
-
ArrayNode
- Since:
- 2.8
-
ArrayNode
- Since:
- 2.7
-
-
Method Details
-
_at
Description copied from class:JsonNodeHelper method used by other methods for traversing the next step of given path expression, and returning matching value node if any: if no match,nullis returned. -
deepCopy
Description copied from class:JsonNodeMethod 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.
-
with
Deprecated.Description copied from class:JsonNodeMethod that works in one of possible ways, depending on whetherexprOrPropertyis a validJsonPointerexpression 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 validJsonPointerexpression, value is taken as a literal Object property name and traversed like a single-segmentJsonPointer.NOTE: before Jackson 2.14 behavior was always that of non-expression usage; that is,
exprOrPropertywas always considered as a simple property name. -
withArray
Description copied from class:JsonNodeMethod that works in one of possible ways, depending on whetherexprOrPropertyis a validJsonPointerexpression 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 validJsonPointerexpression, value is taken as a literal Object property name and traversed like a single-segmentJsonPointer.NOTE: before Jackson 2.14 behavior was always that of non-expression usage; that is,
exprOrPropertywas always considered as a simple property name.- Overrides:
withArrayin classJsonNode- Parameters:
exprOrProperty- EitherJsonPointerexpression for full access (if valid pointer expression), or the name of property for theArrayNode.- Returns:
ArrayNodefound or created
-
_withObject
protected ObjectNode _withObject(JsonPointer origPtr, JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) - Specified by:
_withObjectin classContainerNode<ArrayNode>
-
_withArray
protected ArrayNode _withArray(JsonPointer origPtr, JsonPointer currentPtr, JsonNode.OverwriteMode overwriteMode, boolean preferIndex) - Overrides:
_withArrayin classBaseJsonNode
-
_withObjectAddTailElement
-
_withArrayAddTailElement
-
_withXxxSetArrayElement
-
isEmpty
Description copied from class:JsonSerializable.BaseMethod that may be called on instance to determine if it is considered "empty" for purposes of serialization filtering or not.- Overrides:
isEmptyin classJsonSerializable.Base
-
getNodeType
Description copied from class:JsonNodeReturn the type of this node- Specified by:
getNodeTypein classJsonNode- Returns:
- the node type as a
JsonNodeTypeenum value
-
isArray
public boolean isArray()Description copied from interface:TreeNodeMethod that returns true if this node is an Array node, false otherwise. Note that if true is returned,TreeNode.isContainerNode()must also return true. -
asToken
Description copied from class:BaseJsonNodeMethod that can be used for efficient type detection when using stream abstraction for traversing nodes. Will return the firstJsonTokenthat equivalent stream event would produce (for most nodes there is just one token but for structured/container types multiple) -
size
public int size()Description copied from interface:TreeNodeMethod that returns number of child nodes this node contains: for Array nodes, number of child elements, for Object nodes, number of fields, and for all other nodes 0.- Specified by:
sizein interfaceTreeNode- Specified by:
sizein classContainerNode<ArrayNode>- Returns:
- For non-container nodes returns 0; for arrays number of contained elements, and for objects number of fields.
-
isEmpty
public boolean isEmpty()Description copied from class:JsonNodeConvenience method that is functionally same as:size() == 0for all node types. -
elements
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.NOTE: actual underlying implementation returns
ListIteratorfromList.listIterator()that contains elements, since Jackson 2.18 (before was only genericIterator). -
get
Description copied from class:JsonNodeMethod 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!), aNullNodewill be returned, not null.- Specified by:
getin interfaceTreeNode- Specified by:
getin classContainerNode<ArrayNode>- Parameters:
index- Index of the Array node element to access- 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:JsonNodeMethod 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!), aNullNodewill be returned, not null.- Specified by:
getin interfaceTreeNode- Specified by:
getin classContainerNode<ArrayNode>- Parameters:
fieldName- Name of the field (of Object node) to access- Returns:
- Node that represent value of the specified field, if this node is an object and has value for the specified field. Null otherwise.
-
path
Description copied from class:JsonNodeThis 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.- Specified by:
pathin interfaceTreeNode- Specified by:
pathin classJsonNode- Parameters:
fieldName- Name of the field (of Object node) to access- Returns:
- Node that represent value of the specified field, if this node is an object and has value for the specified field; otherwise "missing node" is returned.
-
path
Description copied from class:JsonNodeThis 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. -
required
Description copied from class:JsonNodeMethod is functionally equivalent topath(index).required()and can be used to check that this node is anArrayNode(that is, represents JSON Array value) and has value for specifiedindex(but note that value may be explicit JSON null value). If this node is Array Node and has value for specified index, value at index is returned; otherwiseIllegalArgumentExceptionis thrown.- Overrides:
requiredin classBaseJsonNode- Parameters:
index- Index of the value of this Array node to access- Returns:
- Value at specified index of this Array node
-
equals
Description copied from class:JsonNodeEntry method for invoking customizable comparison, using passed-inComparatorobject. Nodes will handle traversal of structured types (arrays, objects), but defer to comparator for scalar value comparisons. If a "natural"Comparatoris 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, withthisas the first argument, andotheras the second argument. -
serialize
Description copied from class:BaseJsonNodeMethod called to serialize node instances using given generator.- Specified by:
serializein interfaceJsonSerializable- Specified by:
serializein classBaseJsonNode- Throws:
IOException
-
serializeWithType
public void serializeWithType(JsonGenerator g, SerializerProvider provider, TypeSerializer typeSer) throws IOException Description copied from class:BaseJsonNodeType information is needed, even if JsonNode instances are "plain" JSON, since they may be mixed with other types.- Specified by:
serializeWithTypein interfaceJsonSerializable- Specified by:
serializeWithTypein classBaseJsonNode- Throws:
IOException
-
findValue
Description copied from class:JsonNodeMethod 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.elements()) -
findValues
- Specified by:
findValuesin classJsonNode
-
findValuesAsText
- Specified by:
findValuesAsTextin classJsonNode
-
findParent
Description copied from class:JsonNodeMethod 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:
findParentin classJsonNode- Parameters:
fieldName- Name of field to look for- Returns:
- Value of first matching node found, if any; null if none
-
findParents
- Specified by:
findParentsin classJsonNode
-
set
Method that will set specified field, replacing old value, if any.- Parameters:
value- to set field to; if null, will be converted to aNullNodefirst (to remove field entry, callremove(int)instead)- Returns:
- Old value of the field, if any; null if there was no old value.
-
add
Method for adding specified node at the end of this array.- Returns:
- This node, to allow chaining
-
addAll
Method for adding all child nodes of given Array, appending to child nodes this array contains- Parameters:
other- Array to add contents from- Returns:
- This node (to allow chaining)
-
addAll
Method for adding given nodes as child nodes of this array node.- Parameters:
nodes- Nodes to add- Returns:
- This node (to allow chaining)
-
insert
Method for inserting specified child node as an element of this Array. If index is 0 or less, it will be inserted as the first element; if>= size(), appended at the end, and otherwise inserted before existing element in specified index. No exceptions are thrown for any index.- Returns:
- This node (to allow chaining)
-
remove
Method for removing an entry from this ArrayNode. Will return value of the entry at specified index, if entry existed; null if not.- Returns:
- Node removed, if any; null if none
-
removeAll
Method for removing all elements of this array, leaving the array empty.- Specified by:
removeAllin classContainerNode<ArrayNode>- Returns:
- This node (to allow chaining)
-
addArray
Method that will construct an ArrayNode and add it at the end of this array node.- Returns:
- Newly constructed ArrayNode (NOTE: NOT `this` ArrayNode)
-
addObject
Method that will construct an ObjectNode and add it at the end of this array node.- Returns:
- Newly constructed ObjectNode (NOTE: NOT `this` ArrayNode)
-
addPOJO
Method that will construct a POJONode and add it at the end of this array node.- Returns:
- This array node, to allow chaining
-
addRawValue
- Returns:
- This array node, to allow chaining
- Since:
- 2.6
-
addNull
Method that will add a null value at the end of this array node.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified number at the end of this array.- Returns:
- This array node, to allow chaining
- Since:
- 2.9
-
add
Method for adding specified String value at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified boolean value at the end of this array.- Returns:
- This array node, to allow chaining
-
add
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
add
Method for adding specified binary value at the end of this array (note: when serializing as JSON, will be output Base64 encoded)- Returns:
- This array node, to allow chaining
-
insertArray
Method for creating an array node, inserting it at the specified point in the array, and returning the newly created array (note: NOT 'this' array)- Returns:
- Newly constructed
ArrayNode(note! NOT `this` ArrayNode)
-
insertObject
Method for creating anObjectNode, appending it at the end of this array, and returning the newly created node (note: NOT 'this' array)- Returns:
- Newly constructed
ObjectNode(note! NOT `this` ArrayNode)
-
insertNull
Method that will insert a null value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insertPOJO
Method that will construct a POJONode and insert it at specified position in this array.- Returns:
- This array node, to allow chaining
-
insertRawValue
- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified numeric value at specified position in this array.- Returns:
- This array node, to allow chaining
- Since:
- 2.9
-
insert
Method that will insert specified String at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified String at specified position in this array.- Returns:
- This array node, to allow chaining
-
insert
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This array node, to allow chaining
-
insert
Method that will insert specified binary value at specified position in this array (note: when written as JSON, will be Base64 encoded)- Returns:
- This array node, to allow chaining
-
setNull
- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
setPOJO
- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
setRawValue
- Returns:
- This array node, to allow chaining
- Since:
- 2.13
-
set
- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified numeric value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified numeric value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified numeric value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified numeric value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified String value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified String value.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
set
Method for setting value of a field to specified binary value- Returns:
- This node (to allow chaining)
- Since:
- 2.13
-
equals
Description copied from class:JsonNodeEquality 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
- Since:
- 2.3
-
hashCode
public int hashCode()- Specified by:
hashCodein classBaseJsonNode
-
_set
-
_add
-
_insert
-