public static enum JobExecutionEvent.ExecutionSource extends Enum<JobExecutionEvent.ExecutionSource>
| Enum Constant and Description |
|---|
FAILOVER |
MISFIRE |
NORMAL_TRIGGER |
| Modifier and Type | Method and Description |
|---|---|
static JobExecutionEvent.ExecutionSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobExecutionEvent.ExecutionSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobExecutionEvent.ExecutionSource NORMAL_TRIGGER
public static final JobExecutionEvent.ExecutionSource MISFIRE
public static final JobExecutionEvent.ExecutionSource FAILOVER
public static JobExecutionEvent.ExecutionSource[] values()
for (JobExecutionEvent.ExecutionSource c : JobExecutionEvent.ExecutionSource.values()) System.out.println(c);
public static JobExecutionEvent.ExecutionSource 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 © 2021 The Apache Software Foundation. All rights reserved.