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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionUses only cloning.Uses the copy constructor pattern.Uses serialization to clone.Uses the no-arg constructor followed by property/field copying/cloning.
- 
Method SummaryModifier and TypeMethodDescriptionstatic AutoCloneStyleReturns 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- 
CLONEUses only cloning.
- 
SIMPLEUses the no-arg constructor followed by property/field copying/cloning.
- 
COPY_CONSTRUCTORUses the copy constructor pattern.
- 
SERIALIZATIONUses serialization to clone.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-