Package org.codehaus.jackson.node
Class ObjectNode
- java.lang.Object
-
- org.codehaus.jackson.JsonNode
-
- org.codehaus.jackson.node.BaseJsonNode
-
- org.codehaus.jackson.node.ContainerNode
-
- org.codehaus.jackson.node.ObjectNode
-
- All Implemented Interfaces:
Iterable<JsonNode>,JsonSerializable,JsonSerializableWithType
public class ObjectNode extends ContainerNode
Node that maps to JSON Object structures in JSON content.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classObjectNode.NoFieldsIteratorFor efficiency, let's share the "no fields" iterator...-
Nested classes/interfaces inherited from class org.codehaus.jackson.node.ContainerNode
ContainerNode.NoNodesIterator, ContainerNode.NoStringsIterator
-
-
Field Summary
Fields Modifier and Type Field Description protected LinkedHashMap<String,JsonNode>_children-
Fields inherited from class org.codehaus.jackson.JsonNode
NO_NODES, NO_STRINGS
-
-
Constructor Summary
Constructors Constructor Description ObjectNode(JsonNodeFactory nc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JsonTokenasToken()Method that can be used for efficient type detection when using stream abstraction for traversing nodes.booleanequals(Object o)Equality for node objects is defined as full (deep) value equality.ObjectNodefindParent(String fieldName)Method for finding a JSON Object that contains specified field, within this node or its descendants.List<JsonNode>findParents(String fieldName, List<JsonNode> foundSoFar)JsonNodefindValue(String fieldName)Method for finding a JSON Object field with specified name in this node or its child nodes, and returning value it has.List<JsonNode>findValues(String fieldName, List<JsonNode> foundSoFar)List<String>findValuesAsText(String fieldName, List<String> foundSoFar)JsonNodeget(int index)Method for accessing value of the specified element of an array node.JsonNodeget(String fieldName)Method for accessing value of the specified field of an object node.Iterator<JsonNode>getElements()Method for accessing all value nodes of this Node, iff this node is a JSON Array or Object node.Iterator<String>getFieldNames()Method for accessing names of all fields for this Node, iff this node is a JSON Object node.Iterator<Map.Entry<String,JsonNode>>getFields()Method to use for accessing all fields (with both names and values) of this JSON Object.inthashCode()booleanisObject()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(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.voidput(String fieldName, boolean v)Method for setting value of a field to specified String value.voidput(String fieldName, byte[] v)Method for setting value of a field to specified binary valuevoidput(String fieldName, double v)Method for setting value of a field to specified numeric value.voidput(String fieldName, float v)Method for setting value of a field to specified numeric value.voidput(String fieldName, int v)Method for setting value of a field to specified numeric value.voidput(String fieldName, long v)Method for setting value of a field to specified numeric value.voidput(String fieldName, Boolean value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidput(String fieldName, Double value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidput(String fieldName, Float value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidput(String fieldName, Integer value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidput(String fieldName, Long value)Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.voidput(String fieldName, String v)Method for setting value of a field to specified String value.voidput(String fieldName, BigDecimal v)Method for setting value of a field to specified numeric value.JsonNodeput(String fieldName, JsonNode value)Method that will set specified field, replacing old value, if any.JsonNodeputAll(Map<String,JsonNode> properties)Method for adding given properties to this object node, overriding any existing values for those properties.JsonNodeputAll(ObjectNode other)Method for adding all properties of the given Object, overriding any existing values for those properties.ArrayNodeputArray(String fieldName)Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.protected voidputContentsTo(Map<String,JsonNode> dst)voidputNull(String fieldName)ObjectNodeputObject(String fieldName)Method that will construct an ObjectNode and add it as a field of this ObjectNode, replacing old value, if any.voidputPOJO(String fieldName, Object pojo)JsonNoderemove(String fieldName)Method for removing field entry from this ObjectNode.ObjectNoderemove(Collection<String> fieldNames)Method for removing specified field properties out of this ObjectNode.ObjectNoderemoveAll()Method for removing all field properties, such that this ObjectNode will contain no properties after call.ObjectNoderetain(String... fieldNames)Method for removing all field properties out of this ObjectNode except for ones specified in argument.ObjectNoderetain(Collection<String> fieldNames)Method for removing all field properties out of this ObjectNode except for ones specified in argument.voidserialize(JsonGenerator jg, SerializerProvider provider)Method that can be called to serialize this node and all of its descendants using specified JSON 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.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.StringtoString()Note: marked as abstract to ensure all implementation classes define it properly.ObjectNodewith(String propertyName)Method that can be called on object nodes, to access a property that has object value; or if no such property exists, to create and return such object node.-
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, getIntValue, getLongValue, getNumberValue, getPath, getPath, getTextValue, getValueAsBoolean, getValueAsBoolean, getValueAsDouble, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, has, has, isArray, isBigDecimal, isBigInteger, isBinary, isBoolean, isDouble, isFloatingPointNumber, isInt, isIntegralNumber, isLong, isMissingNode, isNull, isNumber, isPojo, isTextual, isValueNode, iterator
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
_children
protected LinkedHashMap<String,JsonNode> _children
-
-
Constructor Detail
-
ObjectNode
public ObjectNode(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
-
isObject
public boolean isObject()
-
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 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(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.
-
getFieldNames
public Iterator<String> getFieldNames()
Description copied from class:JsonNodeMethod for accessing names of all fields for this Node, iff this node is a JSON Object node.- Overrides:
getFieldNamesin classJsonNode
-
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.
-
path
public JsonNode path(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.
-
getFields
public Iterator<Map.Entry<String,JsonNode>> getFields()
Method to use for accessing all fields (with both names and values) of this JSON Object.
-
with
public ObjectNode with(String propertyName)
Description copied from class:JsonNodeMethod that can be called on object nodes, to access a property that has object value; or if no such property exists, to create and return such object node. If node method is called on is not Object node, or if property exists and has value that is not object node,UnsupportedOperationExceptionis thrown
-
findValue
public JsonNode findValue(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 List<JsonNode> findValues(String fieldName, List<JsonNode> foundSoFar)
- Specified by:
findValuesin classContainerNode
-
findValuesAsText
public List<String> findValuesAsText(String fieldName, List<String> foundSoFar)
- Specified by:
findValuesAsTextin classContainerNode
-
findParent
public ObjectNode findParent(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 List<JsonNode> findParents(String fieldName, List<JsonNode> foundSoFar)
- Specified by:
findParentsin classContainerNode
-
serialize
public final void serialize(JsonGenerator jg, SerializerProvider provider) throws IOException, JsonProcessingException
Method that can be called to serialize this node and all of its descendants using specified JSON generator.- Specified by:
serializein interfaceJsonSerializable- Specified by:
serializein classBaseJsonNode- Throws:
IOExceptionJsonProcessingException
-
serializeWithType
public void serializeWithType(JsonGenerator jg, SerializerProvider provider, TypeSerializer typeSer) throws 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:
IOExceptionJsonProcessingException
-
put
public JsonNode put(String fieldName, 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(java.lang.String)instead)- Returns:
- Old value of the field, if any; null if there was no old value.
-
remove
public JsonNode remove(String fieldName)
Method for removing field entry from this ObjectNode. Will return value of the field, if such field existed; null if not.
-
remove
public ObjectNode remove(Collection<String> fieldNames)
Method for removing specified field properties out of this ObjectNode.- Parameters:
fieldNames- Names of fields to remove- Returns:
- This ObjectNode after removing entries
- Since:
- 1.6
-
removeAll
public ObjectNode removeAll()
Method for removing all field properties, such that this ObjectNode will contain no properties after call.- Specified by:
removeAllin classContainerNode- Returns:
- Container node itself (to allow method call chaining)
-
putAll
public JsonNode putAll(Map<String,JsonNode> properties)
Method for adding given properties to this object node, overriding any existing values for those properties.- Parameters:
properties- Properties to add- Returns:
- This node (to allow chaining)
- Since:
- 1.3
-
putAll
public JsonNode putAll(ObjectNode other)
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 (to allow chaining)
- Since:
- 1.3
-
retain
public ObjectNode retain(Collection<String> fieldNames)
Method for removing all field properties out of this ObjectNode except for ones specified in argument.- Parameters:
fieldNames- Fields to retain in this ObjectNode- Returns:
- This ObjectNode (to allow call chaining)
- Since:
- 1.6
-
retain
public ObjectNode retain(String... fieldNames)
Method for removing all field properties out of this ObjectNode except for ones specified in argument.- Parameters:
fieldNames- Fields to retain in this ObjectNode- Returns:
- This ObjectNode (to allow call chaining)
- Since:
- 1.6
-
putArray
public ArrayNode putArray(String fieldName)
Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.- Returns:
- Newly constructed ArrayNode (NOT the old value, which could be of any type)
-
putObject
public ObjectNode putObject(String fieldName)
Method that will construct an ObjectNode and add it as a field of this ObjectNode, replacing old value, if any.- Returns:
- Newly constructed ObjectNode (NOT the old value, which could be of any type)
-
putNull
public void putNull(String fieldName)
-
put
public void put(String fieldName, int v)
Method for setting value of a field to specified numeric value.
-
put
public void put(String fieldName, Integer value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
put
public void put(String fieldName, long v)
Method for setting value of a field to specified numeric value.
-
put
public void put(String fieldName, Long value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
put
public void put(String fieldName, float v)
Method for setting value of a field to specified numeric value.
-
put
public void put(String fieldName, Float value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
put
public void put(String fieldName, double v)
Method for setting value of a field to specified numeric value.
-
put
public void put(String fieldName, Double value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
put
public void put(String fieldName, BigDecimal v)
Method for setting value of a field to specified numeric value.
-
put
public void put(String fieldName, String v)
Method for setting value of a field to specified String value.
-
put
public void put(String fieldName, boolean v)
Method for setting value of a field to specified String value.
-
put
public void put(String fieldName, Boolean value)
Alternative method that we need to avoid bumping into NPE issues with auto-unboxing.- Since:
- 1.9
-
put
public void put(String fieldName, byte[] v)
Method for setting value of a field to specified binary value
-
equals
public boolean equals(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.
-
-