public enum ChangeShapeTypeOption extends java.lang.Enum<ChangeShapeTypeOption>
| Enum Constant and Description |
|---|
SYNTHESIZE_ENUM_NAMES
Enables synthesizing enum names when changing a string shape to an enum shape and the
string shape's
EnumTrait doesn't have names. |
| Modifier and Type | Method and 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.
|
public static final ChangeShapeTypeOption SYNTHESIZE_ENUM_NAMES
EnumTrait doesn't have names.public static ChangeShapeTypeOption[] values()
for (ChangeShapeTypeOption c : ChangeShapeTypeOption.values()) System.out.println(c);
public static ChangeShapeTypeOption valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null