Package | Description |
---|---|
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 |
Modifier and Type | Field | Description |
---|---|---|
protected HandlerInstantiator |
MapperConfig.Base._handlerInstantiator |
Object used for creating instances of handlers (serializers, deserializers,
type and type id resolvers), given class to instantiate.
|
Modifier and Type | Method | Description |
---|---|---|
HandlerInstantiator |
MapperConfig.Base.getHandlerInstantiator() |
|
HandlerInstantiator |
MapperConfig.getHandlerInstantiator() |
Modifier and Type | Method | Description |
---|---|---|
void |
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. |
DeserializationConfig |
DeserializationConfig.withHandlerInstantiator(HandlerInstantiator hi) |
|
MapperConfig.Base |
MapperConfig.Base.withHandlerInstantiator(HandlerInstantiator hi) |
|
abstract T |
MapperConfig.withHandlerInstantiator(HandlerInstantiator hi) |
Method for constructing and returning a new instance with different
HandlerInstantiator
to use. |
SerializationConfig |
SerializationConfig.withHandlerInstantiator(HandlerInstantiator hi) |