public static enum Runnable.FireProcess extends Enum<Runnable.FireProcess>
Enum Constant and Description |
---|
CRON
Based on a cron expression.
|
NEVER
Never fired
|
NOW
Fired once as soon as possible.
|
STARTUP
Fired during the next application startup
|
Modifier and Type | Method and Description |
---|---|
static Runnable.FireProcess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Runnable.FireProcess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Runnable.FireProcess NEVER
public static final Runnable.FireProcess STARTUP
public static final Runnable.FireProcess NOW
public static final Runnable.FireProcess CRON
public static Runnable.FireProcess[] values()
for (Runnable.FireProcess c : Runnable.FireProcess.values()) System.out.println(c);
public static Runnable.FireProcess 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