| Package | Description |
|---|---|
| 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). |
| Modifier and Type | Method and Description |
|---|---|
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) |
| Modifier and Type | Field and Description |
|---|---|
protected HandlerInstantiator |
BaseSettings._handlerInstantiator
Object used for creating instances of handlers (serializers, deserializers,
type and type id resolvers), given class to instantiate.
|
| Modifier and Type | Method and Description |
|---|---|
HandlerInstantiator |
MapperConfig.getHandlerInstantiator() |
HandlerInstantiator |
BaseSettings.getHandlerInstantiator() |
| Modifier and Type | Method and Description |
|---|---|
abstract T |
MapperConfigBase.with(HandlerInstantiator hi)
Method for constructing and returning a new instance with different
HandlerInstantiator
to use. |
BaseSettings |
BaseSettings.withHandlerInstantiator(HandlerInstantiator hi) |
| Constructor and Description |
|---|
BaseSettings(ClassIntrospector ci,
AnnotationIntrospector ai,
VisibilityChecker<?> vc,
PropertyNamingStrategy pns,
TypeFactory tf,
TypeResolverBuilder<?> typer,
DateFormat dateFormat,
HandlerInstantiator hi,
Locale locale,
TimeZone tz,
com.fasterxml.jackson.core.Base64Variant defaultBase64) |
Copyright © 2014-2015 FasterXML. All Rights Reserved.