Uses of Class
tools.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 (
tools.jackson.databind).-
Uses of CoercionConfigs in tools.jackson.databind
Fields in tools.jackson.databind declared as CoercionConfigsModifier and TypeFieldDescriptionprotected final CoercionConfigsDeserializationConfig._coercionConfigsConfigured coercion rules for coercions from secondary input shapes.Constructors in tools.jackson.databind with parameters of type CoercionConfigsModifierConstructorDescriptionDeserializationConfig(MapperBuilder<?, ?> b, long mapperFeatures, int deserFeatures, int streamReadFeatures, int formatReadFeatures, ConfigOverrides configOverrides, CoercionConfigs coercionConfigs, TypeFactory tf, ClassIntrospector classIntr, MixInHandler mixins, SubtypeResolver str, ContextAttributes defaultAttrs, RootNameLookup rootNames, AbstractTypeResolver[] atrs) -
Uses of CoercionConfigs in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg declared as CoercionConfigsModifier and TypeFieldDescriptionprotected final CoercionConfigsMapperBuilder._coercionConfigsCoercion settings (global, per-type overrides)protected final CoercionConfigsMapperBuilderState._coercionConfigsMethods in tools.jackson.databind.cfg that return CoercionConfigsModifier and TypeMethodDescriptionCoercionConfigs.snapshot()Method called to create a non-shared copy of configuration settings, to be used by anotherObjectMapperinstance.Methods in tools.jackson.databind.cfg with parameters of type CoercionConfigsModifier and TypeMethodDescriptionMapperBuilder.buildDeserializationConfig(ConfigOverrides configOverrides, MixInHandler mixins, TypeFactory tf, ClassIntrospector classIntr, SubtypeResolver str, RootNameLookup rootNames, CoercionConfigs coercionConfigs) Method parameters in tools.jackson.databind.cfg with type arguments of type CoercionConfigsModifier and TypeMethodDescriptionMapperBuilder.withAllCoercionConfigs(Consumer<CoercionConfigs> handler) Method for changing various aspects of configuration overrides.