Uses of Class
com.fasterxml.jackson.databind.cfg.HandlerInstantiator
-
Packages that use HandlerInstantiator Package Description com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode
), as well as writing Java Objects and trees as JSON.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 Modifier and Type Method Description java.lang.Object
ObjectMapper. setHandlerInstantiator(HandlerInstantiator hi)
Method for configuringHandlerInstantiator
to use for creating instances of handlers (such as serializers, deserializers, type and type id resolvers), given a class. -
Uses of HandlerInstantiator in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as HandlerInstantiator Modifier and Type Field Description 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 Modifier and Type Method Description HandlerInstantiator
BaseSettings. getHandlerInstantiator()
HandlerInstantiator
MapperConfig. getHandlerInstantiator()
Methods in com.fasterxml.jackson.databind.cfg with parameters of type HandlerInstantiator Modifier and Type Method Description B
MapperBuilder. handlerInstantiator(HandlerInstantiator hi)
Method for configuringHandlerInstantiator
to use for creating instances of handlers (such as serializers, deserializers, type and type id resolvers), given a class.T
MapperConfigBase. with(HandlerInstantiator hi)
Method for constructing and returning a new instance with differentHandlerInstantiator
to use.BaseSettings
BaseSettings. withHandlerInstantiator(HandlerInstantiator hi)
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type HandlerInstantiator Constructor Description BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, java.text.DateFormat dateFormat, HandlerInstantiator hi, java.util.Locale locale, java.util.TimeZone tz, com.fasterxml.jackson.core.Base64Variant defaultBase64, PolymorphicTypeValidator ptv)
Deprecated.BaseSettings(ClassIntrospector ci, AnnotationIntrospector ai, PropertyNamingStrategy pns, TypeFactory tf, TypeResolverBuilder<?> typer, java.text.DateFormat dateFormat, HandlerInstantiator hi, java.util.Locale locale, java.util.TimeZone tz, com.fasterxml.jackson.core.Base64Variant defaultBase64, PolymorphicTypeValidator ptv, AccessorNamingStrategy.Provider accNaming)
-