java.lang.Object
java.lang.Enum<CoercionAction>
edu.internet2.middleware.grouperClientExt.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
  • 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 class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CoercionAction valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null