static enum Application.AppTrigger extends java.lang.Enum<Application.AppTrigger>
Modifier and Type | Method and Description |
---|---|
static Application.AppTrigger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Application.AppTrigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Application.AppTrigger start
public static final Application.AppTrigger run
public static final Application.AppTrigger pause
public static final Application.AppTrigger stop
public static final Application.AppTrigger destroy
public static Application.AppTrigger[] values()
for (Application.AppTrigger c : Application.AppTrigger.values()) System.out.println(c);
public static Application.AppTrigger 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