Uses of Class
com.fasterxml.jackson.databind.cfg.MutableCoercionConfig
-
Packages that use MutableCoercionConfig 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 MutableCoercionConfig in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return MutableCoercionConfig Modifier and Type Method Description MutableCoercionConfig
ObjectMapper. coercionConfigDefaults()
Accessor forMutableCoercionConfig
through which default (fallback) coercion configurations can be changed.MutableCoercionConfig
ObjectMapper. coercionConfigFor(LogicalType logicalType)
Accessor forMutableCoercionConfig
through which coercion configuration for specified logical target type can be set.MutableCoercionConfig
ObjectMapper. coercionConfigFor(java.lang.Class<?> physicalType)
Accessor forMutableCoercionConfig
through which coercion configuration for specified physical target type can be set. -
Uses of MutableCoercionConfig in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as MutableCoercionConfig Modifier and Type Field Description protected MutableCoercionConfig
CoercionConfigs. _defaultCoercions
Default coercion definitions used if no overrides found by logical or physical type.protected MutableCoercionConfig[]
CoercionConfigs. _perTypeCoercions
Coercion definitions by logical type (LogicalType
)Fields in com.fasterxml.jackson.databind.cfg with type parameters of type MutableCoercionConfig Modifier and Type Field Description protected java.util.Map<java.lang.Class<?>,MutableCoercionConfig>
CoercionConfigs. _perClassCoercions
Coercion definitions by physical type (Class).Methods in com.fasterxml.jackson.databind.cfg that return MutableCoercionConfig Modifier and Type Method Description MutableCoercionConfig
MutableCoercionConfig. copy()
MutableCoercionConfig
CoercionConfigs. defaultCoercions()
MutableCoercionConfig
CoercionConfigs. findOrCreateCoercion(LogicalType type)
MutableCoercionConfig
CoercionConfigs. findOrCreateCoercion(java.lang.Class<?> type)
MutableCoercionConfig
MutableCoercionConfig. setAcceptBlankAsEmpty(java.lang.Boolean state)
MutableCoercionConfig
MutableCoercionConfig. setCoercion(CoercionInputShape shape, CoercionAction action)
Constructors in com.fasterxml.jackson.databind.cfg with parameters of type MutableCoercionConfig Constructor Description CoercionConfigs(CoercionAction defaultAction, MutableCoercionConfig defaultCoercions, MutableCoercionConfig[] perTypeCoercions, java.util.Map<java.lang.Class<?>,MutableCoercionConfig> perClassCoercions)
MutableCoercionConfig(MutableCoercionConfig src)
Constructor parameters in com.fasterxml.jackson.databind.cfg with type arguments of type MutableCoercionConfig Constructor Description CoercionConfigs(CoercionAction defaultAction, MutableCoercionConfig defaultCoercions, MutableCoercionConfig[] perTypeCoercions, java.util.Map<java.lang.Class<?>,MutableCoercionConfig> perClassCoercions)
-