Uses of Class
com.fasterxml.jackson.databind.cfg.MutableConfigOverride
-
Packages that use MutableConfigOverride Package Description com.fasterxml.jackson.databind 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.com.fasterxml.jackson.databind.cfg 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 MutableConfigOverride Modifier and Type Method Description MutableConfigOverride
Module.SetupContext. configOverride(java.lang.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.MutableConfigOverride
ObjectMapper. configOverride(java.lang.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 MutableConfigOverride Modifier and Type Field Description protected java.util.Map<java.lang.Class<?>,MutableConfigOverride>
ConfigOverrides. _overrides
Per-type override definitionsMethods in com.fasterxml.jackson.databind.cfg that return MutableConfigOverride Modifier and Type Method Description MutableConfigOverride
MutableConfigOverride. copy()
MutableConfigOverride
ConfigOverrides. findOrCreateOverride(java.lang.Class<?> type)
MutableConfigOverride
MutableConfigOverride. setFormat(com.fasterxml.jackson.annotation.JsonFormat.Value v)
MutableConfigOverride
MutableConfigOverride. setIgnorals(com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value v)
MutableConfigOverride
MutableConfigOverride. setInclude(com.fasterxml.jackson.annotation.JsonInclude.Value v)
Override inclusion setting for all properties contained in POJOs of the associated type.MutableConfigOverride
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
MutableConfigOverride. setIsIgnoredType(java.lang.Boolean v)
MutableConfigOverride
MutableConfigOverride. setMergeable(java.lang.Boolean v)
MutableConfigOverride
MutableConfigOverride. setSetterInfo(com.fasterxml.jackson.annotation.JsonSetter.Value v)
MutableConfigOverride
MutableConfigOverride. setVisibility(com.fasterxml.jackson.annotation.JsonAutoDetect.Value v)
Methods in com.fasterxml.jackson.databind.cfg that return types with arguments of type MutableConfigOverride Modifier and Type Method Description protected java.util.Map<java.lang.Class<?>,MutableConfigOverride>
ConfigOverrides. _newMap()
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type MutableConfigOverride Constructor Description MutableConfigOverride(MutableConfigOverride src)
Constructor parameters in com.fasterxml.jackson.databind.cfg with type arguments of type MutableConfigOverride Constructor Description ConfigOverrides(java.util.Map<java.lang.Class<?>,MutableConfigOverride> overrides, com.fasterxml.jackson.annotation.JsonInclude.Value defIncl, com.fasterxml.jackson.annotation.JsonSetter.Value defSetter, VisibilityChecker<?> defVisibility, java.lang.Boolean defMergeable)
Deprecated.Since 2.10ConfigOverrides(java.util.Map<java.lang.Class<?>,MutableConfigOverride> overrides, com.fasterxml.jackson.annotation.JsonInclude.Value defIncl, com.fasterxml.jackson.annotation.JsonSetter.Value defSetter, VisibilityChecker<?> defVisibility, java.lang.Boolean defMergeable, java.lang.Boolean defLeniency)
-