Package org.codehaus.jackson.node
Class ArrayNode
- java.lang.Object
-
- org.codehaus.jackson.JsonNode
-
- org.codehaus.jackson.node.BaseJsonNode
-
- org.codehaus.jackson.node.ContainerNode
-
- org.codehaus.jackson.node.ArrayNode
-
- All Implemented Interfaces:
java.lang.Iterable<JsonNode>,JsonSerializable,JsonSerializableWithType
public final class ArrayNode extends ContainerNode
Node class that represents Arrays mapped from Json content.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.codehaus.jackson.node.ContainerNode
ContainerNode.NoNodesIterator, ContainerNode.NoStringsIterator
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.ArrayList<JsonNode>_children-
Fields inherited from class org.codehaus.jackson.JsonNode
NO_NODES, NO_STRINGS
-
-
Constructor Summary
Constructors Constructor Description ArrayNode(JsonNodeFactory nc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonNode_set(int index, JsonNode value)voidadd(boolean v)Method for setting value of a field to specified String value.voidadd(byte[] v)Method for setting value of a field to specified binary valuevoidadd(double v)Method for setting value of a field to specified numeric value.voidadd(float v)Method for setting value of a field to specified numeric value.voidadd(int v)Method for setting value of a field to specified numeric value.voidadd(long v)Method for setting value of a field to specified numeric value.voidadd(java.lang.Boolean value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidadd(java.lang.Double value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidadd(java.lang.Float value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidadd(java.lang.Integer value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidadd(java.lang.Long value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidadd(java.lang.String v)Method for setting value of a field to specified String value.voidadd(java.math.BigDecimal v)Method for setting value of a field to specified numeric value.voidadd(JsonNode value)JsonNodeaddAll(java.util.Collection<JsonNode> nodes)Method for adding given nodes as child nodes of this array node.JsonNodeaddAll(ArrayNode other)Method for adding all child nodes of given Array, appending to child nodes this array containsArrayNodeaddArray()Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.protected voidaddContentsTo(java.util.List<JsonNode> dst)voidaddNull()ObjectNodeaddObject()Method that will construct an ObjectNode and add it at the end of this array node.voidaddPOJO(java.lang.Object value)Method that will construct a POJONode and add it at the end of this array node.JsonTokenasToken()Method that can be used for efficient type detection when using stream abstraction for traversing nodes.booleanequals(java.lang.Object o)Equality for node objects is defined as full (deep) value equality.ObjectNodefindParent(java.lang.String fieldName)Method for finding a JSON Object that contains specified field, within this node or its descendants.java.util.List<JsonNode>findParents(java.lang.String fieldName, java.util.List<JsonNode> foundSoFar)JsonNodefindValue(java.lang.String fieldName)Method for finding a JSON Object field with specified name in this node or its child nodes, and returning value it has.java.util.List<JsonNode>findValues(java.lang.String fieldName, java.util.List<JsonNode> foundSoFar)java.util.List<java.lang.String>findValuesAsText(java.lang.String fieldName, java.util.List<java.lang.String> foundSoFar)JsonNodeget(int index)Method for accessing value of the specified element of an array node.JsonNodeget(java.lang.String fieldName)Method for accessing value of the specified field of an object node.java.util.Iterator<JsonNode>getElements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.inthashCode()voidinsert(int index, boolean v)Method for setting value of a field to specified String value.voidinsert(int index, byte[] v)Method for setting value of a field to specified binary valuevoidinsert(int index, double v)Method for setting value of a field to specified numeric value.voidinsert(int index, float v)Method for setting value of a field to specified numeric value.voidinsert(int index, int v)Method for setting value of a field to specified numeric value.voidinsert(int index, long v)Method for setting value of a field to specified numeric value.voidinsert(int index, java.lang.Boolean value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidinsert(int index, java.lang.Double value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidinsert(int index, java.lang.Float value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidinsert(int index, java.lang.Integer value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidinsert(int index, java.lang.Long value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidinsert(int index, java.lang.String v)Method for setting value of a field to specified String value.voidinsert(int index, java.math.BigDecimal v)Method for setting value of a field to specified numeric value.voidinsert(int index, JsonNode value)Method for inserting specified child node as an element of this Array.ArrayNodeinsertArray(int index)voidinsertNull(int index)ObjectNodeinsertObject(int index)Method that will construct an ObjectNode and add it at the end of this array node.voidinsertPOJO(int index, java.lang.Object value)Method that will construct a POJONode and add it at the end of this array node.booleanisArray()JsonNodepath(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.JsonNodepath(java.lang.String fieldName)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.JsonNoderemove(int index)Method for removing an entry from this ArrayNode.ArrayNoderemoveAll()Method for removing all children container has (if any)voidserialize(JsonGenerator jg, SerializerProvider provider)Method called to serialize node instances using given generator.voidserializeWithType(JsonGenerator jg, SerializerProvider provider, TypeSerializer typeSer)Type information is needed, even if JsonNode instances are "plain" JSON, since they may be mixed with other types.JsonNodeset(int index, JsonNode value)Method that will set specified field, replacing old value, if any.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.java.lang.StringtoString()Note: marked as abstract to ensure all implementation classes define it properly.-
Methods inherited from class org.codehaus.jackson.node.ContainerNode
arrayNode, asText, binaryNode, binaryNode, booleanNode, getValueAsText, isContainerNode, nullNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, numberNode, objectNode, POJONode, textNode
-
Methods inherited from class org.codehaus.jackson.node.BaseJsonNode
findPath, getNumberType, traverse
-
Methods inherited from class org.codehaus.jackson.JsonNode
asBoolean, asBoolean, asDouble, asDouble, asInt, asInt, asLong, asLong, findParents, findValues, findValuesAsText, getBigIntegerValue, getBinaryValue, getBooleanValue, getDecimalValue, getDoubleValue, getFieldNames, getFields, getIntValue, getLongValue, getNumberValue, getPath, getPath, getTextValue, getValueAsBoolean, getValueAsBoolean, getValueAsDouble, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, has, has, isBigDecimal, isBigInteger, isBinary, isBoolean, isDouble, isFloatingPointNumber, isInt, isIntegralNumber, isLong, isMissingNode, isNull, isNumber, isObject, isPojo, isTextual, isValueNode, iterator, with
-
-
-
-
Field Detail
-
_children
protected java.util.ArrayList<JsonNode> _children
-
-
Constructor Detail
-
ArrayNode
public ArrayNode(JsonNodeFactory nc)
-
-
Method Detail
-
asToken
public JsonToken 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)- Specified by:
asTokenin classContainerNode
-
isArray
public boolean isArray()
-
size
public int size()
Description copied from class:JsonNodeMethod 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 classContainerNode- Returns:
- For non-container nodes returns 0; for arrays number of contained elements, and for objects number of fields.
-
getElements
public java.util.Iterator<JsonNode> getElements()
Description copied from class:JsonNodeMethod 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.- Overrides:
getElementsin classJsonNode
-
get
public JsonNode get(int index)
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.- Specified by:
getin classContainerNode- Returns:
- Node that represent value of the specified element, if this node is an array and has specified element. Null otherwise.
-
get
public JsonNode get(java.lang.String fieldName)
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.- Specified by:
getin classContainerNode- 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
public JsonNode path(java.lang.String fieldName)
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.
-
path
public JsonNode path(int index)
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.
-
serialize
public final void serialize(JsonGenerator jg, SerializerProvider provider) throws java.io.IOException, JsonProcessingException
Description copied from class:BaseJsonNodeMethod called to serialize node instances using given generator.- Specified by:
serializein interfaceJsonSerializable- Specified by:
serializein classBaseJsonNode- Throws:
java.io.IOExceptionJsonProcessingException
-
serializeWithType
public void serializeWithType(JsonGenerator jg, SerializerProvider provider, TypeSerializer typeSer) throws java.io.IOException, JsonProcessingException
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 interfaceJsonSerializableWithType- Specified by:
serializeWithTypein classBaseJsonNode- Throws:
java.io.IOExceptionJsonProcessingException
-
findValue
public JsonNode findValue(java.lang.String fieldName)
Description copied from class:JsonNodeMethod for finding a 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.- Specified by:
findValuein classContainerNode- Parameters:
fieldName- Name of field to look for- Returns:
- Value of first matching node found, if any; null if none
-
findValues
public java.util.List<JsonNode> findValues(java.lang.String fieldName, java.util.List<JsonNode> foundSoFar)
- Specified by:
findValuesin classContainerNode
-
findValuesAsText
public java.util.List<java.lang.String> findValuesAsText(java.lang.String fieldName, java.util.List<java.lang.String> foundSoFar)- Specified by:
findValuesAsTextin classContainerNode
-
findParent
public ObjectNode findParent(java.lang.String fieldName)
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 classContainerNode- Parameters:
fieldName- Name of field to look for- Returns:
- Value of first matching node found, if any; null if none
-
findParents
public java.util.List<JsonNode> findParents(java.lang.String fieldName, java.util.List<JsonNode> foundSoFar)
- Specified by:
findParentsin classContainerNode
-
set
public JsonNode set(int index, JsonNode value)
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
public void add(JsonNode value)
-
addAll
public JsonNode addAll(ArrayNode other)
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)
- Since:
- 1.3
-
addAll
public JsonNode addAll(java.util.Collection<JsonNode> nodes)
Method for adding given nodes as child nodes of this array node.- Parameters:
nodes- Nodes to add- Returns:
- This node (to allow chaining)
- Since:
- 1.3
-
insert
public void insert(int index, JsonNode value)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.
-
remove
public JsonNode remove(int index)
Method for removing an entry from this ArrayNode. Will return value of the entry at specified index, if entry existed; null if not.
-
removeAll
public ArrayNode removeAll()
Description copied from class:ContainerNodeMethod for removing all children container has (if any)- Specified by:
removeAllin classContainerNode- Returns:
- Container node itself (to allow method call chaining)
-
addArray
public ArrayNode addArray()
Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.- Returns:
- Newly constructed ArrayNode
-
addObject
public ObjectNode addObject()
Method that will construct an ObjectNode and add it at the end of this array node.- Returns:
- Newly constructed ObjectNode
-
addPOJO
public void addPOJO(java.lang.Object value)
Method that will construct a POJONode and add it at the end of this array node.
-
addNull
public void addNull()
-
add
public void add(int v)
Method for setting value of a field to specified numeric value.
-
add
public void add(java.lang.Integer value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
add
public void add(long v)
Method for setting value of a field to specified numeric value.
-
add
public void add(java.lang.Long value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
add
public void add(float v)
Method for setting value of a field to specified numeric value.
-
add
public void add(java.lang.Float value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
add
public void add(double v)
Method for setting value of a field to specified numeric value.
-
add
public void add(java.lang.Double value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
add
public void add(java.math.BigDecimal v)
Method for setting value of a field to specified numeric value.
-
add
public void add(java.lang.String v)
Method for setting value of a field to specified String value.
-
add
public void add(boolean v)
Method for setting value of a field to specified String value.
-
add
public void add(java.lang.Boolean value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
add
public void add(byte[] v)
Method for setting value of a field to specified binary value
-
insertArray
public ArrayNode insertArray(int index)
-
insertObject
public ObjectNode insertObject(int index)
Method that will construct an ObjectNode and add it at the end of this array node.- Returns:
- Newly constructed ObjectNode
-
insertPOJO
public void insertPOJO(int index, java.lang.Object value)Method that will construct a POJONode and add it at the end of this array node.
-
insertNull
public void insertNull(int index)
-
insert
public void insert(int index, int v)Method for setting value of a field to specified numeric value.
-
insert
public void insert(int index, java.lang.Integer value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
insert
public void insert(int index, long v)Method for setting value of a field to specified numeric value.
-
insert
public void insert(int index, java.lang.Long value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
insert
public void insert(int index, float v)Method for setting value of a field to specified numeric value.
-
insert
public void insert(int index, java.lang.Float value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
insert
public void insert(int index, double v)Method for setting value of a field to specified numeric value.
-
insert
public void insert(int index, java.lang.Double value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
insert
public void insert(int index, java.math.BigDecimal v)Method for setting value of a field to specified numeric value.
-
insert
public void insert(int index, java.lang.String v)Method for setting value of a field to specified String value.
-
insert
public void insert(int index, boolean v)Method for setting value of a field to specified String value.
-
insert
public void insert(int index, java.lang.Boolean value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
insert
public void insert(int index, byte[] v)Method for setting value of a field to specified binary value
-
addContentsTo
protected void addContentsTo(java.util.List<JsonNode> dst)
- Since:
- 1.6
-
equals
public boolean equals(java.lang.Object o)
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.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
Description copied from class:JsonNodeNote: marked as abstract to ensure all implementation classes define it properly.
-
-