Uses of Class
tools.jackson.databind.cfg.MutableConfigOverride
Packages that use MutableConfigOverride
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 MutableConfigOverride in tools.jackson.databind
Methods in tools.jackson.databind that return MutableConfigOverrideModifier and TypeMethodDescriptionJacksonModule.SetupContext.configOverride(Class<?> type) "Mutant accessor" for getting a mutable configuration override object for given type, needed to add or change per-type overrides applied to properties of given type. -
Uses of MutableConfigOverride in tools.jackson.databind.cfg
Fields in tools.jackson.databind.cfg with type parameters of type MutableConfigOverrideModifier and TypeFieldDescriptionprotected Map<Class<?>,MutableConfigOverride> ConfigOverrides._overridesPer-type override definitionsMethods in tools.jackson.databind.cfg that return MutableConfigOverrideModifier and TypeMethodDescriptionModuleContextBase.configOverride(Class<?> type) MutableConfigOverride.copy()ConfigOverrides.findOrCreateOverride(Class<?> type) MutableConfigOverride.setFormat(JsonFormat.Value v) MutableConfigOverride.setIgnorals(JsonIgnoreProperties.Value v) MutableConfigOverride.setInclude(JsonInclude.Value v) Override inclusion setting for all properties contained in POJOs of the associated type.MutableConfigOverride.setIncludeAsProperty(JsonInclude.Value v) Override inclusion setting for properties of the associated type regardless of the type of the POJO containing it.MutableConfigOverride.setIsIgnoredType(Boolean v) MutableConfigOverride.setMergeable(Boolean v) MutableConfigOverride.setNullHandling(JsonSetter.Value v) MutableConfigOverride.setVisibility(JsonAutoDetect.Value v) Methods in tools.jackson.databind.cfg that return types with arguments of type MutableConfigOverrideModifier and TypeMethodDescriptionprotected Map<Class<?>,MutableConfigOverride> ConfigOverrides._newMap()Method parameters in tools.jackson.databind.cfg with type arguments of type MutableConfigOverrideModifier and TypeMethodDescriptionMapperBuilder.withConfigOverride(Class<?> forType, Consumer<MutableConfigOverride> handler) Method for changing config overrides for specific type, through callback to specific handler.Constructors in tools.jackson.databind.cfg with parameters of type MutableConfigOverrideConstructor parameters in tools.jackson.databind.cfg with type arguments of type MutableConfigOverrideModifierConstructorDescriptionprotectedConfigOverrides(Map<Class<?>, MutableConfigOverride> overrides, JsonInclude.Value defIncl, JsonSetter.Value defSetter, VisibilityChecker defVisibility, Boolean defMergeable, Boolean defLeniency)