Package groovy.transform
Enum DefaultsMode
- All Implemented Interfaces:
Serializable
,Comparable<DefaultsMode>
,java.lang.constant.Constable
Intended mode to use when generating constructors to emulate default parameter values when using the
TupleConstructor
annotation.- Since:
- 4.0.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 ConstantDescriptionProduce multiple constructors as required to handle any mandatory and optional arguments.Produce a single constructor corresponding to the complete list of properties/fields of the class being compiled.Produce multiple constructors as required from all parameters through to the no-arg constructor. -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultsMode
Returns the enum constant of this type with the specified name.static DefaultsMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OFF
Produce a single constructor corresponding to the complete list of properties/fields of the class being compiled. -
AUTO
Produce multiple constructors as required to handle any mandatory and optional arguments. An argument is optional if the respective property/field has an explicit initial value. A property/field without an initial value is deemed mandatory. -
ON
Produce multiple constructors as required from all parameters through to the no-arg constructor. Defaults will be set according to any explicit initial values or the default value otherwise.
-
-
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
-