Enum SetterStyle
- All Implemented Interfaces:
Serializable
,Comparable<SetterStyle>
,java.lang.constant.Constable
Specifies the style of setter to use when
AssignmentType.METHOD
is enabled.- Since:
- 2.1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiontoString()
static SetterStyle
Returns the enum constant of this type with the specified name.static SetterStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SET
Standard setters with "set" prefix, for examplesetFoo("value")
- Since:
- 2.1.0
-
WITH
Setters with "with" prefix, for examplewithFoo("value")
- Since:
- 2.1.0
-
PROPERTY
Setters without a prefix, where the setter's name is the same as the corresponding property name, for examplefoo("value")
- Since:
- 2.1.0
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<SetterStyle>
-