Class CoercionConfigs
java.lang.Object
com.fasterxml.jackson.databind.cfg.CoercionConfigs
- All Implemented Interfaces:
Serializable
- Since:
- 2.12
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncopy()Method called to create a non-shared copy of configuration settings, to be used by anotherObjectMapperinstance.findCoercion(DeserializationConfig config, LogicalType targetType, Class<?> targetClass, CoercionInputShape inputShape) General-purpose accessor for finding what to do when specified coercion from shape that is now always allowed to be coerced from is requested.findCoercionFromBlankString(DeserializationConfig config, LogicalType targetType, Class<?> targetClass, CoercionAction actionIfBlankNotAllowed) More specialized accessor called in case of input being a blank String (one consisting of only white space characters with length of at least one).findOrCreateCoercion(Class<?> type)
-
Constructor Details
-
CoercionConfigs
public CoercionConfigs()
-
-
Method Details
-
copy
Method called to create a non-shared copy of configuration settings, to be used by anotherObjectMapperinstance.- Returns:
- A non-shared copy of configuration settings
-
defaultCoercions
-
findOrCreateCoercion
-
findOrCreateCoercion
-
findCoercion
public CoercionAction findCoercion(DeserializationConfig config, LogicalType targetType, Class<?> targetClass, CoercionInputShape inputShape) General-purpose accessor for finding what to do when specified coercion from shape that is now always allowed to be coerced from is requested.- Parameters:
config- Currently active deserialization configurationtargetType- Logical target type of coerciontargetClass- Physical target type of coercioninputShape- Input shape to coerce from- Returns:
- CoercionAction configured for specified coercion
- Since:
- 2.12
-
findCoercionFromBlankString
public CoercionAction findCoercionFromBlankString(DeserializationConfig config, LogicalType targetType, Class<?> targetClass, CoercionAction actionIfBlankNotAllowed) More specialized accessor called in case of input being a blank String (one consisting of only white space characters with length of at least one). Will basically first determine if "blank as empty" is allowed: if not, returnsactionIfBlankNotAllowed, otherwise returns action forCoercionInputShape.EmptyString.- Parameters:
config- Currently active deserialization configurationtargetType- Logical target type of coerciontargetClass- Physical target type of coercionactionIfBlankNotAllowed- Return value to use in case "blanks as empty" is not allowed- Returns:
- CoercionAction configured for specified coercion from blank string
-