Package groovy.transform
Enum AutoCloneStyle
- All Implemented Interfaces:
Serializable
,Comparable<AutoCloneStyle>
,java.lang.constant.Constable
Intended style to use for cloning when using the
@
AutoClone annotation.- Since:
- 1.8.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 ConstantDescriptionUses only cloning.Uses the copy constructor pattern.Uses serialization to clone.Uses the no-arg constructor followed by property/field copying/cloning. -
Method Summary
Modifier and TypeMethodDescriptionstatic AutoCloneStyle
Returns the enum constant of this type with the specified name.static AutoCloneStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLONE
Uses only cloning. -
SIMPLE
Uses the no-arg constructor followed by property/field copying/cloning. -
COPY_CONSTRUCTOR
Uses the copy constructor pattern. -
SERIALIZATION
Uses serialization to clone.
-
-
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
-