static enum Generate.Type extends java.lang.Enum<Generate.Type>
Modifier and Type | Method and Description |
---|---|
(package private) abstract java.lang.String |
constructor() |
(package private) abstract java.lang.String |
declaration() |
(package private) abstract java.lang.Class<?> |
generator() |
(package private) abstract java.lang.String |
imports() |
static Generate.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Generate.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Generate.Type CUSTOM
public static final Generate.Type EXTEND
public static Generate.Type[] values()
for (Generate.Type c : Generate.Type.values()) System.out.println(c);
public static Generate.Type 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 nullabstract java.lang.String imports()
abstract java.lang.String declaration()
abstract java.lang.String constructor()
abstract java.lang.Class<?> generator()