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 viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.node Contains concreteJsonNodeimplementations 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 JsonNodeFactoryDeserializationConfig. _nodeFactoryFactory used for constructingJsonNodeinstances.Methods in org.codehaus.jackson.map that return JsonNodeFactory Modifier and Type Method Description JsonNodeFactoryDeserializationConfig. getNodeFactory()JsonNodeFactoryDeserializationContext. getNodeFactory()JsonNodeFactoryObjectMapper. getNodeFactory()Method that can be used to get hold ofJsonNodeFactorythat this mapper will use when directly constructing rootJsonNodeinstances for Trees.Methods in org.codehaus.jackson.map with parameters of type JsonNodeFactory Modifier and Type Method Description ObjectReaderObjectMapper. reader(JsonNodeFactory f)Factory method for constructingObjectReaderthat will use specifiedJsonNodeFactoryfor constructing JSON trees.ObjectMapperObjectMapper. setNodeFactory(JsonNodeFactory f)Method for specifyingJsonNodeFactoryto use for constructing root level tree nodes (via methodObjectMapper.createObjectNode()DeserializationConfigDeserializationConfig. withNodeFactory(JsonNodeFactory f)Fluent factory method that will construct a new instance with specifiedJsonNodeFactoryObjectReaderObjectReader. withNodeFactory(JsonNodeFactory f)Method for constructing a new reader instance with configuration that uses passedJsonNodeFactoryfor constructingJsonNodeinstances.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 JsonNodeFactoryJsonNodeFactory. instanceDefault 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)
-