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.introspect |
Functionality needed for Bean introspection, required for detecting
accessors and mutators for Beans, as well as locating and handling
method annotations.
|
Modifier and Type | Field and Description |
---|---|
protected SimpleMixInResolver |
ObjectMapper._mixIns
Mapping that defines how to apply mix-in annotations: key is
the type to received additional annotations, and value is the
type that has annotations to "mix in".
|
Constructor and Description |
---|
DeserializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Deprecated.
Since 2.8, remove from 2.9 or later
|
DeserializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides)
Constructor used by ObjectMapper to create default configuration object instance.
|
DeserializationConfig(DeserializationConfig src,
SimpleMixInResolver mixins) |
DeserializationConfig(DeserializationConfig src,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides)
Copy-constructor used for making a copy used by new
ObjectMapper . |
SerializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Deprecated.
Since 2.8, remove from 2.9 or later
|
SerializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides)
Constructor used by ObjectMapper to create default configuration object instance.
|
SerializationConfig(SerializationConfig src,
SimpleMixInResolver mixins) |
SerializationConfig(SerializationConfig src,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides)
Copy-constructor used for making a copy to be used by new
ObjectMapper . |
Modifier and Type | Field and Description |
---|---|
protected SimpleMixInResolver |
MapperConfigBase._mixIns
Mix-in annotation mappings to use, if any: immutable,
can not be changed once defined.
|
Constructor and Description |
---|
MapperConfigBase(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames)
Deprecated.
Since 2.8, remove from 2.9 or later
|
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,
SimpleMixInResolver mixins) |
MapperConfigBase(MapperConfigBase<CFG,T> src,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides) |
Modifier and Type | Method and Description |
---|---|
SimpleMixInResolver |
SimpleMixInResolver.copy() |
SimpleMixInResolver |
SimpleMixInResolver.withoutLocalDefinitions()
Mutant factory method that constructs a new instance that has no locally
defined mix-in/target mappings.
|
SimpleMixInResolver |
SimpleMixInResolver.withOverrides(ClassIntrospector.MixInResolver overrides)
Mutant factory for constructor a new resolver instance with given
mix-in resolver override.
|
Copyright © 2008–2016 FasterXML. All rights reserved.