Package com.orchestranetworks.workflow
Enum Class PublicationMetadata.NotificationEvent
java.lang.Object
java.lang.Enum<PublicationMetadata.NotificationEvent>
com.orchestranetworks.workflow.PublicationMetadata.NotificationEvent
- All Implemented Interfaces:
Serializable,Comparable<PublicationMetadata.NotificationEvent>,Constable
- Enclosing class:
- PublicationMetadata
public static enum PublicationMetadata.NotificationEvent
extends Enum<PublicationMetadata.NotificationEvent>
Enum representing various notification events in the workflow process.
Each enum constant is associated with a specific string key that identifies the event.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEvent type for process creation.Event type for process encounters an error.Event type for process termination/completion. -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
PROCESS_CREATION
Event type for process creation. -
PROCESS_TERMINATION
Event type for process termination/completion. -
PROCESS_IN_ERROR
Event type for process encounters an error.
-
-
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
-
getEvent
Retrieves the string key associated with the notification event type.- Returns:
- The string key of the notification event type.
-