Enum OnSetMethodError

java.lang.Object
java.lang.Enum<OnSetMethodError>
org.instancio.settings.OnSetMethodError
All Implemented Interfaces:
Serializable, Comparable<OnSetMethodError>, java.lang.constant.Constable

@ExperimentalApi public enum OnSetMethodError extends Enum<OnSetMethodError>
A setting that specifies what should happen if an error occurs during a setter method invocation.
Since:
2.1.0
See Also:
  • Enum Constant Details

    • ASSIGN_FIELD

      public static final OnSetMethodError ASSIGN_FIELD
      Use field assignment as the fallback (default behaviour).
      Since:
      2.1.0
    • FAIL

      public static final OnSetMethodError FAIL
      Propagate the error up by throwing InstancioApiException.
      Since:
      2.1.0
    • IGNORE

      public static final OnSetMethodError IGNORE
      Ignore the error and continue populating the object.

      Depending on what causes the error within the set method, the target field may or may not have been populated.

      Since:
      2.1.0
  • Method Details

    • values

      public static OnSetMethodError[] 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 OnSetMethodError 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<OnSetMethodError>