public static enum JavaAbstractType.GenerationType extends Enum<JavaAbstractType.GenerationType>
| Enum Constant and Description |
|---|
GENERATED_SINGLE |
GENERATED_WITH_BASE |
NOT_GENERATED |
| Modifier and Type | Method and Description |
|---|---|
static JavaAbstractType.GenerationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaAbstractType.GenerationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaAbstractType.GenerationType NOT_GENERATED
public static final JavaAbstractType.GenerationType GENERATED_SINGLE
public static final JavaAbstractType.GenerationType GENERATED_WITH_BASE
public static JavaAbstractType.GenerationType[] values()
for (JavaAbstractType.GenerationType c : JavaAbstractType.GenerationType.values()) System.out.println(c);
public static JavaAbstractType.GenerationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null