public enum JobTriggerStatus extends Enum<JobTriggerStatus>
| Enum Constant and Description |
|---|
COMPLETE
The trigger is complete will not be fired anymore.
|
ERROR
The trigger cannot be fired because of an error.
|
PAUSED
The trigger has been temporarily paused to avoid further executions.
|
RUNNABLE
The trigger is ready to be locked by a node to execute the job.
|
RUNNING
The trigger has been locked by a node and the job is executing.
|
| Modifier and Type | Method and Description |
|---|---|
static JobTriggerStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobTriggerStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobTriggerStatus RUNNABLE
public static final JobTriggerStatus RUNNING
public static final JobTriggerStatus COMPLETE
public static final JobTriggerStatus PAUSED
public static final JobTriggerStatus ERROR
public static JobTriggerStatus[] values()
for (JobTriggerStatus c : JobTriggerStatus.values()) System.out.println(c);
public static JobTriggerStatus 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 © 2012–2021 Graylog, Inc.. All rights reserved.