Uses of Class
com.fasterxml.jackson.databind.cfg.CoercionConfigs
Packages that use CoercionConfigs
Package
Description
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.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 CoercionConfigsModifier and TypeFieldDescriptionprotected final CoercionConfigsDeserializationConfig._coercionConfigsprotected final CoercionConfigsObjectMapper._coercionConfigsCurrent 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 CoercionConfigsModifierConstructorDescriptionDeserializationConfig(BaseSettings base, SubtypeResolver str, SimpleMixInResolver mixins, RootNameLookup rootNames, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs, DatatypeFeatures datatypeFeatures) Constructor used by ObjectMapper to create default configuration object instance.protectedDeserializationConfig(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 CoercionConfigsModifier and TypeMethodDescriptionCoercionConfigs.copy()Method called to create a non-shared copy of configuration settings, to be used by anotherObjectMapperinstance.