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 MutableCoercionConfigObjectMapper. coercionConfigDefaults()Accessor forMutableCoercionConfigthrough which default (fallback) coercion configurations can be changed.MutableCoercionConfigObjectMapper. coercionConfigFor(LogicalType logicalType)Accessor forMutableCoercionConfigthrough which coercion configuration for specified logical target type can be set.MutableCoercionConfigObjectMapper. coercionConfigFor(java.lang.Class<?> physicalType)Accessor forMutableCoercionConfigthrough 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 MutableCoercionConfigCoercionConfigs. _defaultCoercionsDefault coercion definitions used if no overrides found by logical or physical type.protected MutableCoercionConfig[]CoercionConfigs. _perTypeCoercionsCoercion 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. _perClassCoercionsCoercion definitions by physical type (Class).Methods in com.fasterxml.jackson.databind.cfg that return MutableCoercionConfig Modifier and Type Method Description MutableCoercionConfigMutableCoercionConfig. copy()MutableCoercionConfigCoercionConfigs. defaultCoercions()MutableCoercionConfigCoercionConfigs. findOrCreateCoercion(LogicalType type)MutableCoercionConfigCoercionConfigs. findOrCreateCoercion(java.lang.Class<?> type)MutableCoercionConfigMutableCoercionConfig. setAcceptBlankAsEmpty(java.lang.Boolean state)MutableCoercionConfigMutableCoercionConfig. setCoercion(CoercionInputShape shape, CoercionAction action)Method to set coercions to target type or class during builder-style mapper construction withMapperBuilder.withCoercionConfig(Class, Consumer),MapperBuilder.withCoercionConfig(LogicalType, Consumer)andMapperBuilder.withCoercionConfigDefaults(Consumer)...Method parameters in com.fasterxml.jackson.databind.cfg with type arguments of type MutableCoercionConfig Modifier and Type Method Description BMapperBuilder. withCoercionConfig(LogicalType forType, java.util.function.Consumer<MutableCoercionConfig> handler)Method for changing coercion config for specific logical types, through callback to specific handler.BMapperBuilder. withCoercionConfig(java.lang.Class<?> forType, java.util.function.Consumer<MutableCoercionConfig> handler)Method for changing coercion config for specific physical type, through callback to specific handler.BMapperBuilder. withCoercionConfigDefaults(java.util.function.Consumer<MutableCoercionConfig> handler)Method for changing target-type-independent coercion configuration defaults.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)
-