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 ). |
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.