Package com.sas.lsaf.workflow.element
Enum Class Element.ElementType
- All Implemented Interfaces:
Serializable,Comparable<Element.ElementType>,Constable
- Enclosing class:
Element
The types of the flow elements.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAn event that represents the end of the process flow.An element that represents a wait state.An element that represents a wait state.An element that represents a wait state.An event that represents the start of the process flow.A task that runs a job and waits until the job completes before the process flow continues.A task that runs a job and continues the process flow without waiting for the job to complete.A task that sends a notification to specific recipients.An element that represents the termination of the process flow.A task that is performed by a user. -
Method Summary
Modifier and TypeMethodDescriptionstatic Element.ElementTypeReturns the enum constant of this class with the specified name.static Element.ElementType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SYSTEM_JOB_EXEC
A task that runs a job and waits until the job completes before the process flow continues. -
SYSTEM_JOB_EXEC_NO_WAIT
A task that runs a job and continues the process flow without waiting for the job to complete. -
SYSTEM_NOTIFICATION
A task that sends a notification to specific recipients. -
USER_TASK
A task that is performed by a user. -
EVENT_GATEWAY
An element that represents a wait state. It is typically followed by two or more intermediate catch events, such as timer or signal events that cause the process flow to continue. -
INTERMEDIATE_CATCH_SIGNAL_EVENT
An element that represents a wait state. A signal event waits for a signal with that name, and the signal event causes the process flow to continue. -
INTERMEDIATE_CATCH_TIMER_EVENT
An element that represents a wait state. A timer event waits for a specific amount of time to elapse before the process flow continues. -
TERMINATE_END
An element that represents the termination of the process flow. If this is element is reached, the process flow will end leaving in a completed state. -
START
An event that represents the start of the process flow. -
END
An event that represents the end of the process flow.
-
-
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
-