public enum SchedulerExecutorStatus extends Enum<SchedulerExecutorStatus>
Enum Constant and Description |
---|
NOT_RUNNING
Executor is not running.
|
RESTARTED
Executor was restarted during the current check request.
|
RUNNING
Executor is running normally.
|
Modifier and Type | Method and Description |
---|---|
static SchedulerExecutorStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerExecutorStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerExecutorStatus RUNNING
public static final SchedulerExecutorStatus NOT_RUNNING
public static final SchedulerExecutorStatus RESTARTED
public static SchedulerExecutorStatus[] values()
for (SchedulerExecutorStatus c : SchedulerExecutorStatus.values()) System.out.println(c);
public static SchedulerExecutorStatus 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.