public enum QuartzStartMode extends Enum<QuartzStartMode>
| Enum Constant and Description |
|---|
FORCED
Scheduler will be started even if no scheduled business methods are found.
|
HALTED
Just like forced mode but the scheduler will not start triggering jobs until an explicit start is called
from the main scheduler.
|
NORMAL
Scheduler is not started unless a
Scheduled business method is found. |
| Modifier and Type | Method and Description |
|---|---|
static QuartzStartMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuartzStartMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuartzStartMode NORMAL
Scheduled business method is found.public static final QuartzStartMode FORCED
public static final QuartzStartMode HALTED
public static QuartzStartMode[] values()
for (QuartzStartMode c : QuartzStartMode.values()) System.out.println(c);
public static QuartzStartMode 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 nullCopyright © 2021 JBoss by Red Hat. All rights reserved.