Enum SetterStyle

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

@ExperimentalApi public enum SetterStyle extends Enum<SetterStyle>
Specifies the style of setter to use when AssignmentType.METHOD is enabled.
Since:
2.1.0
See Also:
  • Enum Constant Details

    • SET

      public static final SetterStyle SET
      Standard setters with "set" prefix, for example setFoo("value")
      Since:
      2.1.0
    • WITH

      public static final SetterStyle WITH
      Setters with "with" prefix, for example withFoo("value")
      Since:
      2.1.0
    • PROPERTY

      public static final SetterStyle PROPERTY
      Setters without a prefix, where the setter's name is the same as the corresponding property name, for example foo("value")
      Since:
      2.1.0
  • Method Details

    • values

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