Uses of Class
org.codehaus.jackson.node.ArrayNode
-
Packages that use ArrayNode 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.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model. -
-
Uses of ArrayNode in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return ArrayNode Modifier and Type Method Description ArrayNodeObjectMapper. 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 ArrayNode Modifier and Type Method Description protected ArrayNodeJsonNodeDeserializer. 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 ArrayNode Modifier and Type Method Description ArrayNodeArrayNode. addArray()Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.ArrayNodeContainerNode. arrayNode()Factory method that constructs and returns an emptyArrayNodeConstruction is done using registeredJsonNodeFactory.ArrayNodeJsonNodeFactory. arrayNode()Factory method for constructing an empty JSON Array nodeArrayNodeArrayNode. insertArray(int index)ArrayNodeObjectNode. putArray(java.lang.String fieldName)Method that will construct an ArrayNode and add it as a field of this ObjectNode, replacing old value, if any.ArrayNodeArrayNode. removeAll()Methods in org.codehaus.jackson.node with parameters of type ArrayNode Modifier and Type Method Description JsonNodeArrayNode. addAll(ArrayNode other)Method for adding all child nodes of given Array, appending to child nodes this array contains
-