public enum SchedulerStatus extends Enum<SchedulerStatus>
Enum Constant and Description |
---|
running
Scheduler is running
|
suspended
Scheduler is suspended
|
suspending
Scheduler is suspending (jobs are still running)
|
Modifier and Type | Method and Description |
---|---|
static SchedulerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerStatus running
public static final SchedulerStatus suspending
public static final SchedulerStatus suspended
public static SchedulerStatus[] values()
for (SchedulerStatus c : SchedulerStatus.values()) System.out.println(c);
public static 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 nullCopyright © 2024 Gentics Software. All rights reserved.