Uses of Class
org.codehaus.jackson.node.JsonNodeFactory

Packages that use JsonNodeFactory
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 via ObjectMapper class, as well as convenience methods included in JsonParser 
org.codehaus.jackson.node Contains concrete JsonNode implementations Jackson uses for the Tree model. 
 

Uses of JsonNodeFactory in org.codehaus.jackson.map
 

Subclasses of JsonNodeFactory in org.codehaus.jackson.map
 class TreeMapper
          Deprecated. since 1.0, use ObjectMapper instead
 

Fields in org.codehaus.jackson.map declared as JsonNodeFactory
protected  JsonNodeFactory DeserializationConfig._nodeFactory
          Factory used for constructing JsonNode instances.
 

Methods in org.codehaus.jackson.map that return JsonNodeFactory
 JsonNodeFactory DeserializationConfig.getNodeFactory()
           
 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()
           
 

Methods in org.codehaus.jackson.map with parameters of type JsonNodeFactory
 ObjectReader ObjectMapper.reader(JsonNodeFactory f)
          Factory method for constructing ObjectReader that will use specified JsonNodeFactory for constructing JSON trees.
 void DeserializationConfig.setNodeFactory(JsonNodeFactory nf)
          Deprecated. Since 1.8 should use DeserializationConfig.withNodeFactory(org.codehaus.jackson.node.JsonNodeFactory) instead
 ObjectMapper ObjectMapper.setNodeFactory(JsonNodeFactory f)
          Method for specifying JsonNodeFactory to use for constructing root level tree nodes (via method ObjectMapper.createObjectNode()
 ObjectReader ObjectReader.withNodeFactory(JsonNodeFactory f)
           
 DeserializationConfig DeserializationConfig.withNodeFactory(JsonNodeFactory f)
           
 

Constructors in org.codehaus.jackson.map with parameters of type JsonNodeFactory
DeserializationConfig(DeserializationConfig src, JsonNodeFactory f)
           
 

Uses of JsonNodeFactory in org.codehaus.jackson.node
 

Fields in org.codehaus.jackson.node declared as JsonNodeFactory
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
ArrayNode(JsonNodeFactory nc)
           
ContainerNode(JsonNodeFactory nc)
           
ObjectNode(JsonNodeFactory nc)