Uses of Class
org.codehaus.jackson.node.ObjectNode
-
Packages that use ObjectNode Package Description org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.deser Contains implementation classes of deserialization part of data binding.org.codehaus.jackson.map.ser.std org.codehaus.jackson.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.org.codehaus.jackson.schema Classes needed for JSON schema support (currently just ability to generate schemas using serialization part of data mapping) -
-
Uses of ObjectNode in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return ObjectNode Modifier and Type Method Description ObjectNodeObjectMapper. createObjectNode()Note: return type is co-variant, as basic ObjectCodec abstraction can not refer to concrete node types (as it's part of core package, whereas impls are part of mapper package) -
Uses of ObjectNode in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser that return ObjectNode Modifier and Type Method Description protected ObjectNodeJsonNodeDeserializer. deserializeObject(JsonParser jp, DeserializationContext ctxt)Deprecated.since 1.9.0 -
Uses of ObjectNode in org.codehaus.jackson.map.ser.std
Methods in org.codehaus.jackson.map.ser.std that return ObjectNode Modifier and Type Method Description protected ObjectNodeSerializerBase. createObjectNode()protected ObjectNodeSerializerBase. createSchemaNode(java.lang.String type)protected ObjectNodeSerializerBase. createSchemaNode(java.lang.String type, boolean isOptional) -
Uses of ObjectNode in org.codehaus.jackson.node
Methods in org.codehaus.jackson.node that return ObjectNode Modifier and Type Method Description ObjectNodeArrayNode. addObject()Method that will construct an ObjectNode and add it at the end of this array node.ObjectNodeArrayNode. findParent(java.lang.String fieldName)ObjectNodeBaseJsonNode. findParent(java.lang.String fieldName)abstract ObjectNodeContainerNode. findParent(java.lang.String fieldName)ObjectNodeObjectNode. findParent(java.lang.String fieldName)ObjectNodeArrayNode. insertObject(int index)Method that will construct an ObjectNode and add it at the end of this array node.ObjectNodeContainerNode. objectNode()Factory method that constructs and returns an emptyObjectNodeConstruction is done using registeredJsonNodeFactory.ObjectNodeJsonNodeFactory. objectNode()Factory method for constructing an empty JSON Object ("struct") nodeObjectNodeObjectNode. putObject(java.lang.String fieldName)Method that will construct an ObjectNode and add it as a field of this ObjectNode, replacing old value, if any.ObjectNodeObjectNode. remove(java.util.Collection<java.lang.String> fieldNames)Method for removing specified field properties out of this ObjectNode.ObjectNodeObjectNode. removeAll()Method for removing all field properties, such that this ObjectNode will contain no properties after call.ObjectNodeObjectNode. retain(java.lang.String... fieldNames)Method for removing all field properties out of this ObjectNode except for ones specified in argument.ObjectNodeObjectNode. retain(java.util.Collection<java.lang.String> fieldNames)Method for removing all field properties out of this ObjectNode except for ones specified in argument.ObjectNodeObjectNode. with(java.lang.String propertyName)Methods in org.codehaus.jackson.node with parameters of type ObjectNode Modifier and Type Method Description JsonNodeObjectNode. putAll(ObjectNode other)Method for adding all properties of the given Object, overriding any existing values for those properties. -
Uses of ObjectNode in org.codehaus.jackson.schema
Methods in org.codehaus.jackson.schema that return ObjectNode Modifier and Type Method Description ObjectNodeJsonSchema. getSchemaNode()Method for accessing root JSON object of the contained schema.Constructors in org.codehaus.jackson.schema with parameters of type ObjectNode Constructor Description JsonSchema(ObjectNode schema)Main constructor for schema instances.
-