Uses of Class
com.fasterxml.jackson.databind.cfg.CoercionConfigs
-
Packages that use CoercionConfigs 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 CoercionConfigs in com.fasterxml.jackson.databind
Fields in com.fasterxml.jackson.databind declared as CoercionConfigs Modifier and Type Field Description protected CoercionConfigs
DeserializationConfig. _coercionConfigs
protected CoercionConfigs
ObjectMapper. _coercionConfigs
Current set of coercion configuration definitions that define allowed (and not allowed) coercions from secondary shapes.Constructors in com.fasterxml.jackson.databind with parameters of type CoercionConfigs Constructor Description 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, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs)
Copy-constructor used for making a copy used by newObjectMapper
. -
Uses of CoercionConfigs in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return CoercionConfigs Modifier and Type Method Description CoercionConfigs
CoercionConfigs. copy()
Method called to create a non-shared copy of configuration settings, to be used by anotherObjectMapper
instance.
-