Uses of Class
com.fasterxml.jackson.databind.cfg.HandlerInstantiator

Packages that use HandlerInstantiator
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.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind). 
 

Uses of HandlerInstantiator in com.fasterxml.jackson.databind
 

Methods in com.fasterxml.jackson.databind with parameters of type HandlerInstantiator
 Object ObjectMapper.setHandlerInstantiator(HandlerInstantiator hi)
          Method for configuring HandlerInstantiator to use for creating instances of handlers (such as serializers, deserializers, type and type id resolvers), given a class.
 SerializationConfig SerializationConfig.with(HandlerInstantiator hi)
           
 DeserializationConfig DeserializationConfig.with(HandlerInstantiator hi)
           
 

Uses of HandlerInstantiator in com.fasterxml.jackson.databind.cfg
 

Fields in com.fasterxml.jackson.databind.cfg declared as HandlerInstantiator
protected  HandlerInstantiator BaseSettings._handlerInstantiator
          Object used for creating instances of handlers (serializers, deserializers, type and type id resolvers), given class to instantiate.
 

Methods in com.fasterxml.jackson.databind.cfg that return HandlerInstantiator
 HandlerInstantiator MapperConfig.getHandlerInstantiator()
           
 HandlerInstantiator BaseSettings.getHandlerInstantiator()
           
 

Methods in com.fasterxml.jackson.databind.cfg with parameters of type HandlerInstantiator
abstract  T MapperConfigBase.with(HandlerInstantiator hi)
          Method for constructing and returning a new instance with different HandlerInstantiator to use.
 BaseSettings BaseSettings.withHandlerInstantiator(HandlerInstantiator hi)
           
 

Constructors in com.fasterxml.jackson.databind.cfg with parameters of type HandlerInstantiator
BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, VisibilityChecker<?> vc, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, DateFormat dateFormat, HandlerInstantiator hi, Locale locale, TimeZone tz)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.