Package com.mendix.workflows
Enum Class UserTaskCompletionType
- All Implemented Interfaces:
Serializable
,Comparable<UserTaskCompletionType>
,Constable
Represents the completion type of a user task.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionConsensus input completion type that is applicable for multi user tasks.Majority input completion type that is applicable for multi user tasks.Microflow input completion type that is applicable for multi user tasks.Single user input completion type.Threshold input completion type that is applicable for multi user tasks.Veto input completion type that is applicable for multi user tasks. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Returns the string representation of the user task completion type.static UserTaskCompletionType
Returns the enum constant of this class with the specified name.static UserTaskCompletionType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SINGLE
Single user input completion type. -
CONSENSUS
Consensus input completion type that is applicable for multi user tasks. -
MAJORITY
Majority input completion type that is applicable for multi user tasks. -
MICROFLOW
Microflow input completion type that is applicable for multi user tasks. -
THRESHOLD
Threshold input completion type that is applicable for multi user tasks. -
VETO
Veto input completion type that is applicable for multi user tasks.
-
-
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 user task completion type.- Returns:
- the string representation
-