Uses of Class
org.codehaus.jackson.node.ArrayNode
Packages that use ArrayNode
Package
Description
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
Contains implementation classes of deserialization part of
data binding.
Contains concrete
JsonNode
implementations
Jackson uses for the Tree model.-
Uses of ArrayNode in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return ArrayNodeModifier and TypeMethodDescriptionObjectMapper.createArrayNode()
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 ArrayNode in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser that return ArrayNodeModifier and TypeMethodDescriptionprotected final ArrayNode
JsonNodeDeserializer.deserializeArray
(JsonParser jp, DeserializationContext ctxt) Deprecated.since 1.9.0 -
Uses of ArrayNode in org.codehaus.jackson.node
Methods in org.codehaus.jackson.node that return ArrayNodeModifier and TypeMethodDescriptionArrayNode.addArray()
Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.final ArrayNode
ContainerNode.arrayNode()
Factory method that constructs and returns an emptyArrayNode
Construction is done using registeredJsonNodeFactory
.JsonNodeFactory.arrayNode()
Factory method for constructing an empty JSON Array nodeArrayNode.insertArray
(int index) Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.ArrayNode.removeAll()
Methods in org.codehaus.jackson.node with parameters of type ArrayNode