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 (via Builder).- Since:
- 2.12
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MutableCoercionConfig()
-
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)
-
Methods inherited from class com.fasterxml.jackson.databind.cfg.CoercionConfig
findAction, getAcceptBlankAsEmpty
-
-
-
-
Method Detail
-
copy
public MutableCoercionConfig copy()
-
setCoercion
public MutableCoercionConfig setCoercion(CoercionInputShape shape, CoercionAction action)
-
setAcceptBlankAsEmpty
public MutableCoercionConfig setAcceptBlankAsEmpty(java.lang.Boolean state)
-
-