Enum Class SubscriptionEvent
- All Implemented Interfaces:
Serializable,Comparable<SubscriptionEvent>,Constable
The values for the events for which subscriptions can be created.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEvent when a job submission fails.Event when a job submission is initiated.Event when a repository file is locked.Event when a job submission is initiated by the scheduler.Event when a repository file is signed.Event when a repository file is unlocked. -
Method Summary
Modifier and TypeMethodDescriptionstatic SubscriptionEventReturns the enum constant of this class with the specified name.static SubscriptionEvent[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JOB_START_EVENT
Event when a job submission is initiated. -
JOB_FAILED_EVENT
Event when a job submission fails. This includes job failures and program errors. -
SCHEDULED_JOB_START_EVENT
Event when a job submission is initiated by the scheduler. -
LOCK_EVENT
Event when a repository file is locked. -
UNLOCK_EVENT
Event when a repository file is unlocked. -
SIGN_EVENT
Event when a repository file is signed.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-