|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ObjectNode | |
---|---|
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 via
ObjectMapper class, as well
as convenience methods included in
JsonParser |
org.codehaus.jackson.map.ser | Contains implementation classes of serialization part of data binding. |
org.codehaus.jackson.node | Contains concrete JsonNode implementations
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 | |
---|---|
ObjectNode |
ObjectMapper.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.ser |
---|
Methods in org.codehaus.jackson.map.ser that return ObjectNode | |
---|---|
protected ObjectNode |
SerializerBase.createObjectNode()
|
protected ObjectNode |
SerializerBase.createSchemaNode(String type)
|
protected ObjectNode |
SerializerBase.createSchemaNode(String type,
boolean isOptional)
|
Uses of ObjectNode in org.codehaus.jackson.node |
---|
Methods in org.codehaus.jackson.node that return ObjectNode | |
---|---|
ObjectNode |
ArrayNode.addObject()
Method that will construct an ObjectNode and add it at the end of this array node. |
ObjectNode |
ArrayNode.insertObject(int index)
Method that will construct an ObjectNode and add it at the end of this array node. |
ObjectNode |
JsonNodeFactory.objectNode()
Factory method for constructing an empty Json Object ("struct") node |
ObjectNode |
ContainerNode.objectNode()
|
ObjectNode |
ObjectNode.putObject(String fieldName)
Method that will construct an ObjectNode and add it as a field of this ObjectNode, replacing old value, if any. |
ObjectNode |
ObjectNode.removeAll()
|
Methods in org.codehaus.jackson.node with parameters of type ObjectNode | |
---|---|
JsonNode |
ObjectNode.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 | |
---|---|
ObjectNode |
JsonSchema.getSchemaNode()
Note: this method is specified with JsonValue annotation
to represent serialization to use; same as if explicitly
serializing returned object. |
Constructors in org.codehaus.jackson.schema with parameters of type ObjectNode | |
---|---|
JsonSchema(ObjectNode schema)
Main constructor for schema instances. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |