Class MutableCoercionConfig
- java.lang.Object
-
- com.fasterxml.jackson.databind.cfg.CoercionConfig
-
- com.fasterxml.jackson.databind.cfg.MutableCoercionConfig
-
- All Implemented Interfaces:
java.io.Serializable
public class MutableCoercionConfig extends CoercionConfig implements java.io.Serializable
Mutable version ofCoercionConfig
(or rather, extended API) exposed during configuration phase ofObjectMapper
construction (viaJsonMapper.builder()
).- Since:
- 2.12
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.fasterxml.jackson.databind.cfg.CoercionConfig
_acceptBlankAsEmpty, _coercionsByShape
-
-
Constructor Summary
Constructors Modifier Constructor Description MutableCoercionConfig()
protected
MutableCoercionConfig(MutableCoercionConfig src)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableCoercionConfig
copy()
MutableCoercionConfig
setAcceptBlankAsEmpty(java.lang.Boolean state)
MutableCoercionConfig
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)
...-
Methods inherited from class com.fasterxml.jackson.databind.cfg.CoercionConfig
findAction, getAcceptBlankAsEmpty
-
-
-
-
Constructor Detail
-
MutableCoercionConfig
public MutableCoercionConfig()
-
MutableCoercionConfig
protected MutableCoercionConfig(MutableCoercionConfig src)
-
-
Method Detail
-
copy
public MutableCoercionConfig copy()
-
setCoercion
public MutableCoercionConfig setCoercion(CoercionInputShape shape, CoercionAction action)
Method to set coercions to target type or class during builder-style mapper construction with ... these builder methods. Refrain from using this method outside of builder phase.
-
setAcceptBlankAsEmpty
public MutableCoercionConfig setAcceptBlankAsEmpty(java.lang.Boolean state)
-
-