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 | Field and Description |
---|---|
protected CoercionConfigs |
ObjectMapper._coercionConfigs
Current set of coercion configuration definitions that define allowed
(and not allowed) coercions from secondary shapes.
|
protected CoercionConfigs |
DeserializationConfig._coercionConfigs |
Constructor and Description |
---|
DeserializationConfig(BaseSettings base,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides,
CoercionConfigs coercionConfigs,
DatatypeFeatures datatypeFeatures)
Constructor used by ObjectMapper to create default configuration object instance.
|
DeserializationConfig(DeserializationConfig src,
SubtypeResolver str,
SimpleMixInResolver mixins,
RootNameLookup rootNames,
ConfigOverrides configOverrides,
CoercionConfigs coercionConfigs)
Copy-constructor used for making a copy used by new
ObjectMapper . |
Modifier and Type | Method and Description |
---|---|
CoercionConfigs |
CoercionConfigs.copy()
Method called to create a non-shared copy of configuration settings,
to be used by another
ObjectMapper
instance. |
Copyright © 2008–2022 FasterXML. All rights reserved.