Uses of Class
com.fasterxml.jackson.databind.cfg.ConfigOverrides
-
Packages that use ConfigOverrides 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
). -
-
Uses of ConfigOverrides in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as ConfigOverrides Modifier and Type Field Description protected ConfigOverrides
ObjectMapper. _configOverrides
Currently active per-type configuration overrides, accessed by declared type of property.Constructors in com.fasterxml.jackson.databind with parameters of type ConfigOverrides Constructor Description DeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Deprecated.DeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs)
Constructor used by ObjectMapper to create default configuration object instance.DeserializationConfig(DeserializationConfig src, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Deprecated.DeserializationConfig(DeserializationConfig src, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs)
Copy-constructor used for making a copy used by newObjectMapper
.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, RootNameLookup rootNames, ConfigOverrides configOverrides)
Deprecated.since 2.11.2SerializationConfig(SerializationConfig src, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Copy-constructor used for making a copy to be used by newObjectMapper
. -
Uses of ConfigOverrides in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as ConfigOverrides Modifier and Type Field Description protected ConfigOverrides
MapperConfigBase. _configOverrides
Configuration overrides to apply, keyed by type of property.Methods in com.fasterxml.jackson.databind.cfg that return ConfigOverrides Modifier and Type Method Description ConfigOverrides
ConfigOverrides. copy()
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type ConfigOverrides 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, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides)
Copy constructor usually called to make a copy for use by ObjectMapper that is copied.
-