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