public static enum SchedulePhase.SchedulingStrategy extends Enum<SchedulePhase.SchedulingStrategy>
Enum Constant and Description |
---|
EARLIEST |
LATEST |
LATEST_OUT_OF_LOOPS |
Modifier and Type | Method and Description |
---|---|
static SchedulePhase.SchedulingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulePhase.SchedulingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulePhase.SchedulingStrategy EARLIEST
public static final SchedulePhase.SchedulingStrategy LATEST
public static final SchedulePhase.SchedulingStrategy LATEST_OUT_OF_LOOPS
public static SchedulePhase.SchedulingStrategy[] values()
for (SchedulePhase.SchedulingStrategy c : SchedulePhase.SchedulingStrategy.values()) System.out.println(c);
public static SchedulePhase.SchedulingStrategy 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