Uses of Class
com.fasterxml.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 (
com.fasterxml.jackson.databind
).-
Uses of MutableConfigOverride in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return MutableConfigOverrideModifier and TypeMethodDescriptionModule.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.ObjectMapper.configOverride
(Class<?> type) 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 com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg with type parameters of type MutableConfigOverrideModifier and TypeFieldDescriptionprotected Map
<Class<?>, MutableConfigOverride> ConfigOverrides._overrides
Per-type override definitionsMethods in com.fasterxml.jackson.databind.cfg that return MutableConfigOverrideModifier and TypeMethodDescriptionMutableConfigOverride.copy()
ConfigOverrides.findOrCreateOverride
(Class<?> type) MutableConfigOverride.setFormat
(com.fasterxml.jackson.annotation.JsonFormat.Value v) MutableConfigOverride.setIgnorals
(com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value v) MutableConfigOverride.setInclude
(com.fasterxml.jackson.annotation.JsonInclude.Value v) Override inclusion setting for all properties contained in POJOs of the associated type.MutableConfigOverride.setIncludeAsProperty
(com.fasterxml.jackson.annotation.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.setSetterInfo
(com.fasterxml.jackson.annotation.JsonSetter.Value v) MutableConfigOverride.setVisibility
(com.fasterxml.jackson.annotation.JsonAutoDetect.Value v) Methods in com.fasterxml.jackson.databind.cfg that return types with arguments of type MutableConfigOverrideModifier and TypeMethodDescriptionprotected Map
<Class<?>, MutableConfigOverride> ConfigOverrides._newMap()
Method parameters in com.fasterxml.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 com.fasterxml.jackson.databind.cfg with parameters of type MutableConfigOverrideConstructor parameters in com.fasterxml.jackson.databind.cfg with type arguments of type MutableConfigOverrideModifierConstructorDescriptionprotected
ConfigOverrides
(Map<Class<?>, MutableConfigOverride> overrides, com.fasterxml.jackson.annotation.JsonInclude.Value defIncl, com.fasterxml.jackson.annotation.JsonSetter.Value defSetter, VisibilityChecker<?> defVisibility, Boolean defMergeable) Deprecated.Since 2.10protected
ConfigOverrides
(Map<Class<?>, MutableConfigOverride> overrides, com.fasterxml.jackson.annotation.JsonInclude.Value defIncl, com.fasterxml.jackson.annotation.JsonSetter.Value defSetter, VisibilityChecker<?> defVisibility, Boolean defMergeable, Boolean defLeniency)