Uses of Class
org.codehaus.jackson.node.JsonNodeFactory
-
Packages that use JsonNodeFactory 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 viaObjectMapper
class, as well as convenience methods included inJsonParser
org.codehaus.jackson.node Contains concreteJsonNode
implementations Jackson uses for the Tree model. -
-
Uses of JsonNodeFactory in org.codehaus.jackson.map
Fields in org.codehaus.jackson.map declared as JsonNodeFactory Modifier and Type Field Description protected JsonNodeFactory
DeserializationConfig. _nodeFactory
Factory used for constructingJsonNode
instances.Methods in org.codehaus.jackson.map that return JsonNodeFactory Modifier and Type Method Description JsonNodeFactory
DeserializationConfig. getNodeFactory()
JsonNodeFactory
DeserializationContext. getNodeFactory()
JsonNodeFactory
ObjectMapper. getNodeFactory()
Method that can be used to get hold ofJsonNodeFactory
that this mapper will use when directly constructing rootJsonNode
instances for Trees.Methods in org.codehaus.jackson.map with parameters of type JsonNodeFactory Modifier and Type Method Description ObjectReader
ObjectMapper. reader(JsonNodeFactory f)
Factory method for constructingObjectReader
that will use specifiedJsonNodeFactory
for constructing JSON trees.ObjectMapper
ObjectMapper. setNodeFactory(JsonNodeFactory f)
Method for specifyingJsonNodeFactory
to use for constructing root level tree nodes (via methodObjectMapper.createObjectNode()
DeserializationConfig
DeserializationConfig. withNodeFactory(JsonNodeFactory f)
Fluent factory method that will construct a new instance with specifiedJsonNodeFactory
ObjectReader
ObjectReader. withNodeFactory(JsonNodeFactory f)
Constructors in org.codehaus.jackson.map with parameters of type JsonNodeFactory Constructor Description DeserializationConfig(DeserializationConfig src, JsonNodeFactory f)
-
Uses of JsonNodeFactory in org.codehaus.jackson.node
Fields in org.codehaus.jackson.node declared as JsonNodeFactory Modifier and Type Field Description static JsonNodeFactory
JsonNodeFactory. instance
Default singleton instance that construct "standard" node instances: given that this class is stateless, a globally shared singleton can be used.Constructors in org.codehaus.jackson.node with parameters of type JsonNodeFactory Constructor Description ArrayNode(JsonNodeFactory nc)
ContainerNode(JsonNodeFactory nc)
ObjectNode(JsonNodeFactory nc)
-