|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JsonNodeFactory | |
---|---|
com.fasterxml.jackson.databind | 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 |
com.fasterxml.jackson.databind.node | Contains concrete JsonNode implementations
Jackson uses for the Tree model. |
Uses of JsonNodeFactory in com.fasterxml.jackson.databind |
---|
Fields in com.fasterxml.jackson.databind declared as JsonNodeFactory | |
---|---|
protected JsonNodeFactory |
DeserializationConfig._nodeFactory
Factory used for constructing JsonNode instances. |
Methods in com.fasterxml.jackson.databind that return JsonNodeFactory | |
---|---|
JsonNodeFactory |
ObjectMapper.getNodeFactory()
Method that can be used to get hold of JsonNodeFactory
that this mapper will use when directly constructing
root JsonNode instances for Trees. |
JsonNodeFactory |
DeserializationContext.getNodeFactory()
Convenience method, functionally equivalent to: |
JsonNodeFactory |
DeserializationConfig.getNodeFactory()
|
Methods in com.fasterxml.jackson.databind with parameters of type JsonNodeFactory | |
---|---|
ObjectReader |
ObjectMapper.reader(JsonNodeFactory f)
Factory method for constructing ObjectReader that will
use specified JsonNodeFactory for constructing JSON trees. |
ObjectMapper |
ObjectMapper.setNodeFactory(JsonNodeFactory f)
Method for specifying JsonNodeFactory to use for
constructing root level tree nodes (via method
ObjectMapper.createObjectNode() |
ObjectReader |
ObjectReader.with(JsonNodeFactory f)
Method for constructing a new reader instance with configuration that uses passed JsonNodeFactory for constructing JsonNode
instances. |
DeserializationConfig |
DeserializationConfig.with(JsonNodeFactory f)
Fluent factory method that will construct a new instance with specified JsonNodeFactory |
Uses of JsonNodeFactory in com.fasterxml.jackson.databind.node |
---|
Fields in com.fasterxml.jackson.databind.node declared as JsonNodeFactory | |
---|---|
protected JsonNodeFactory |
ContainerNode._nodeFactory
We will keep a reference to the Object (usually TreeMapper) that can construct instances of nodes to add to this container node. |
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 com.fasterxml.jackson.databind.node with parameters of type JsonNodeFactory | |
---|---|
ArrayNode(JsonNodeFactory nc)
|
|
ArrayNode(JsonNodeFactory nc,
ArrayList<JsonNode> children)
|
|
ContainerNode(JsonNodeFactory nc)
|
|
ObjectNode(JsonNodeFactory nc)
|
|
ObjectNode(JsonNodeFactory nc,
LinkedHashMap<String,JsonNode> children)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |