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 ). |
com.fasterxml.jackson.databind.jsontype.impl |
Package that contains standard implementations for
TypeResolverBuilder
and
TypeIdResolver . |
Modifier and Type | Field | Description |
---|---|---|
protected SubtypeResolver |
ObjectMapper._subtypeResolver |
Thing used for registering sub-types, resolving them to
super/sub-types as needed.
|
Modifier and Type | Method | Description |
---|---|---|
SubtypeResolver |
ObjectMapper.getSubtypeResolver() |
Method for accessing subtype resolver in use.
|
Modifier and Type | Method | Description |
---|---|---|
ObjectMapper |
ObjectMapper.setSubtypeResolver(SubtypeResolver str) |
Method for setting custom subtype resolver to use.
|
DeserializationConfig |
DeserializationConfig.with(SubtypeResolver str) |
|
SerializationConfig |
SerializationConfig.with(SubtypeResolver str) |
Constructor | Description |
---|---|
DeserializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides) |
Constructor used by ObjectMapper to create default configuration object instance.
|
SerializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides) |
Constructor used by ObjectMapper to create default configuration object instance.
|
Modifier and Type | Field | Description |
---|---|---|
protected SubtypeResolver |
MapperConfigBase._subtypeResolver |
Registered concrete subtypes that can be used instead of (or
in addition to) ones declared using annotations.
|
Modifier and Type | Method | Description |
---|---|---|
abstract SubtypeResolver |
MapperConfig.getSubtypeResolver() |
|
SubtypeResolver |
MapperConfigBase.getSubtypeResolver() |
Accessor for object used for finding out all reachable subtypes
for supertypes; needed when a logical type name is used instead
of class name (or custom scheme).
|
Modifier and Type | Method | Description |
---|---|---|
abstract T |
MapperConfigBase.with(SubtypeResolver str) |
Method for constructing and returning a new instance with different
SubtypeResolver
to use. |
Constructor | Description |
---|---|
MapperConfigBase(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides) |
Constructor used when creating a new instance (compared to
that of creating fluent copies)
|
MapperConfigBase(MapperConfigBase<CFG,T> src,
SubtypeResolver str) |
Modifier and Type | Class | Description |
---|---|---|
class |
StdSubtypeResolver |
Standard
SubtypeResolver implementation. |
Copyright © 2008–2018. All rights reserved.