Package com.mendix.workflows
Enum Class WorkflowActivityType
- All Implemented Interfaces:
Serializable
,Comparable<WorkflowActivityType>
,Constable
Represents the type of a workflow activity.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe call microflow activity.The call workflow activity.The decision activity.The end activity.The end of a boundary event path.Deprecated.since Mendix 10.6.0, no replacementThe jump activity.The (invisible) end of a parallel split activity.The multi-user task activity.The start activity of a non-interrupting timer boundary event flow.The (start of a) parallel split activity.The start activity.The (single) user task activity.The wait for notification activity.The wait for timer activity. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns the string representation of the workflow activity type.static WorkflowActivityType
Returns the enum constant of this class with the specified name.static WorkflowActivityType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START
The start activity. -
END
The end activity. -
DECISION
The decision activity. -
PARALLEL_SPLIT
The (start of a) parallel split activity. -
END_OF_PARALLEL_SPLIT_BRANCH
Deprecated.since Mendix 10.6.0, no replacementThe end of a path in a parallel split activity. -
MERGE_OF_PARALLEL_SPLIT
The (invisible) end of a parallel split activity. -
USER_TASK
The (single) user task activity. -
MULTI_INPUT_USER_TASK
The multi-user task activity. -
CALL_MICROFLOW
The call microflow activity. -
CALL_WORKFLOW
The call workflow activity. -
JUMP
The jump activity. -
WAIT_FOR_NOTIFICATION
The wait for notification activity. -
WAIT_FOR_TIMER
The wait for timer activity. -
NON_INTERRUPTING_TIMER_EVENT
The start activity of a non-interrupting timer boundary event flow. -
END_OF_BOUNDARY_EVENT_PATH
The end of a boundary event path.
-
-
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
-
getValue
Returns the string representation of the workflow activity type.- Returns:
- the string representation
-