public enum ScheduleStatus extends Enum<ScheduleStatus>
Enum Constant and Description |
---|
DUE
The schedule is due for execution.
|
IDLE
Not running, and not due for execution.
|
RUNNING
An execution for the schedule is currently running.
|
Modifier and Type | Method and Description |
---|---|
static ScheduleStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScheduleStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScheduleStatus IDLE
public static final ScheduleStatus DUE
public static final ScheduleStatus RUNNING
public static ScheduleStatus[] values()
for (ScheduleStatus c : ScheduleStatus.values()) System.out.println(c);
public static ScheduleStatus 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 © 2024 Gentics Software. All rights reserved.