Enum CoercionAction

java.lang.Object
java.lang.Enum<CoercionAction>
com.fasterxml.jackson.databind.cfg.CoercionAction
All Implemented Interfaces:
Serializable, Comparable<CoercionAction>, java.lang.constant.Constable

public enum CoercionAction extends Enum<CoercionAction>
Set of possible actions for requested coercion from an input shape CoercionInputShape that does not directly or naturally match target type (LogicalType). This action is suggestion for deserializers to use in cases where alternate actions could be appropriate: it is up to deserializer to check configured action and take it into consideration.
Since:
2.12
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Action to convert to "empty" value for type, whatever that is: for primitive types and their wrappers this is "default" value (for example, for int that would be 0); for Collections empty collection; for POJOs instance configured with default constructor and so on.
    Action to convert to null value
    Action to fail coercion attempt with exceptipn
    Action to attempt coercion (which may lead to failure)
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • Fail

      public static final CoercionAction Fail
      Action to fail coercion attempt with exceptipn
    • TryConvert

      public static final CoercionAction TryConvert
      Action to attempt coercion (which may lead to failure)
    • AsNull

      public static final CoercionAction AsNull
      Action to convert to null value
    • AsEmpty

      public static final CoercionAction AsEmpty
      Action to convert to "empty" value for type, whatever that is: for primitive types and their wrappers this is "default" value (for example, for int that would be 0); for Collections empty collection; for POJOs instance configured with default constructor and so on.
  • Method Details

    • values

      public static CoercionAction[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static CoercionAction valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null