Package com.mendix.workflows
Enum WorkflowActivityType
- java.lang.Object
-
- java.lang.Enum<WorkflowActivityType>
-
- com.mendix.workflows.WorkflowActivityType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WorkflowActivityType>
public enum WorkflowActivityType extends java.lang.Enum<WorkflowActivityType>
Indicates the type of workflow activity.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALL_MICROFLOW
CALL_WORKFLOW
DECISION
END
END_OF_PARALLEL_SPLIT_BRANCH
JUMP
MERGE_OF_PARALLEL_SPLIT
PARALLEL_SPLIT
START
USER_TASK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
Returns the string representation of the workflow activity type.static WorkflowActivityType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WorkflowActivityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final WorkflowActivityType START
-
END
public static final WorkflowActivityType END
-
DECISION
public static final WorkflowActivityType DECISION
-
PARALLEL_SPLIT
public static final WorkflowActivityType PARALLEL_SPLIT
-
END_OF_PARALLEL_SPLIT_BRANCH
public static final WorkflowActivityType END_OF_PARALLEL_SPLIT_BRANCH
-
MERGE_OF_PARALLEL_SPLIT
public static final WorkflowActivityType MERGE_OF_PARALLEL_SPLIT
-
USER_TASK
public static final WorkflowActivityType USER_TASK
-
CALL_MICROFLOW
public static final WorkflowActivityType CALL_MICROFLOW
-
CALL_WORKFLOW
public static final WorkflowActivityType CALL_WORKFLOW
-
JUMP
public static final WorkflowActivityType JUMP
-
-
Method Detail
-
values
public static WorkflowActivityType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WorkflowActivityType c : WorkflowActivityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowActivityType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
Returns the string representation of the workflow activity type.- Returns:
- the string representation of the workflow activity type
-
-