public enum SubscriptionEvent extends Enum<SubscriptionEvent>
Enum Constant and Description |
---|
JOB_FAILED_EVENT
Event when a job submission fails.
|
JOB_START_EVENT
Event when a job submission is initiated.
|
SCHEDULED_JOB_START_EVENT
Event when a job submission is initiated by the scheduler.
|
Modifier and Type | Method and Description |
---|---|
static SubscriptionEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubscriptionEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubscriptionEvent JOB_START_EVENT
public static final SubscriptionEvent JOB_FAILED_EVENT
public static final SubscriptionEvent SCHEDULED_JOB_START_EVENT
public static SubscriptionEvent[] values()
for (SubscriptionEvent c : SubscriptionEvent.values()) System.out.println(c);
public static SubscriptionEvent 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<i>Copyright (c) 2020, SAS Institute Inc., Cary, NC, USA</i>