Enum OnSetMethodNotFound

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

public enum OnSetMethodNotFound extends Enum<OnSetMethodNotFound>
A setting that specifies what should happen if a setter cannot be resolved.
Since:
2.1.0
See Also:
  • Enum Constant Details

    • ASSIGN_FIELD

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

      public static final OnSetMethodNotFound FAIL
      Fail by throwing InstancioApiException.

      Note that the exception is not thrown if a field is final, because a final field cannot have a setter.

      Since:
      2.1.0
    • IGNORE

      public static final OnSetMethodNotFound IGNORE
      Ignore the error and continue populating the object.
      Since:
      2.1.0
  • Method Details

    • values

      public static OnSetMethodNotFound[] 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 OnSetMethodNotFound 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<OnSetMethodNotFound>