Enum ChangeShapeTypeOption
- java.lang.Object
-
- java.lang.Enum<ChangeShapeTypeOption>
-
- software.amazon.smithy.model.transform.ChangeShapeTypeOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ChangeShapeTypeOption>
public enum ChangeShapeTypeOption extends java.lang.Enum<ChangeShapeTypeOption>
Options that can be enabled when changing shape types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SYNTHESIZE_ENUM_NAMES
Enables synthesizing enum names when changing a string shape to an enum shape and the string shape'sEnumTrait
doesn't have names.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ChangeShapeTypeOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ChangeShapeTypeOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNTHESIZE_ENUM_NAMES
public static final ChangeShapeTypeOption SYNTHESIZE_ENUM_NAMES
Enables synthesizing enum names when changing a string shape to an enum shape and the string shape'sEnumTrait
doesn't have names.
-
-
Method Detail
-
values
public static ChangeShapeTypeOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ChangeShapeTypeOption c : ChangeShapeTypeOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChangeShapeTypeOption valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-