Uses of Class
tools.jackson.databind.cfg.ConfigOverrides
Packages that use ConfigOverrides
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 ConfigOverrides in tools.jackson.databind
Constructors in tools.jackson.databind with parameters of type ConfigOverridesModifierConstructorDescriptionDeserializationConfig(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) SerializationConfig(MapperBuilder<?, ?> b, long mapperFeatures, int serFeatures, int streamWriteFeatures, int formatWriteFeatures, ConfigOverrides configOverrides, TypeFactory tf, ClassIntrospector classIntr, MixInHandler mixins, SubtypeResolver str, ContextAttributes defaultAttrs, RootNameLookup rootNames, FilterProvider filterProvider) -
Uses of ConfigOverrides in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg declared as ConfigOverridesModifier and TypeFieldDescriptionprotected final ConfigOverridesMapperBuilder._configOverridesVarious configuration setting overrides, both global base settings and per-class overrides.protected final ConfigOverridesMapperBuilderState._configOverridesprotected final ConfigOverridesMapperConfigBase._configOverridesConfiguration overrides to apply, keyed by type of property.protected final ConfigOverridesModuleContextBase._configOverridesMethods in tools.jackson.databind.cfg that return ConfigOverridesModifier and TypeMethodDescriptionConfigOverrides.setDefaultInclusion(JsonInclude.Value v) ConfigOverrides.setDefaultLeniency(Boolean b) ConfigOverrides.setDefaultMergeable(Boolean b) ConfigOverrides.setDefaultNullHandling(JsonSetter.Value v) ConfigOverrides.setDefaultVisibility(JsonAutoDetect.Value vis) ConfigOverrides.setDefaultVisibility(VisibilityChecker v) ConfigOverrides.snapshot()Methods in tools.jackson.databind.cfg with parameters of type ConfigOverridesModifier and TypeMethodDescriptionMapperBuilder.buildDeserializationConfig(ConfigOverrides configOverrides, MixInHandler mixins, TypeFactory tf, ClassIntrospector classIntr, SubtypeResolver str, RootNameLookup rootNames, CoercionConfigs coercionConfigs) MapperBuilder.buildSerializationConfig(ConfigOverrides configOverrides, MixInHandler mixins, TypeFactory tf, ClassIntrospector classIntr, SubtypeResolver str, RootNameLookup rootNames, FilterProvider filterProvider) Method parameters in tools.jackson.databind.cfg with type arguments of type ConfigOverridesModifier and TypeMethodDescriptionMapperBuilder.withAllConfigOverrides(Consumer<ConfigOverrides> handler) Method for changing various aspects of configuration overrides.Constructors in tools.jackson.databind.cfg with parameters of type ConfigOverridesModifierConstructorDescriptionprotectedMapperConfigBase(MapperBuilder<?, ?> b, long mapperFeatures, TypeFactory tf, ClassIntrospector classIntr, MixInHandler mixins, SubtypeResolver str, ConfigOverrides configOverrides, ContextAttributes defaultAttrs, RootNameLookup rootNames) Constructor used when creating a new instance (compared to that of creating fluent copies)ModuleContextBase(MapperBuilder<?, ?> b, ConfigOverrides configOverrides)