Enum ServiceTaskActionType
- java.lang.Object
-
- java.lang.Enum<ServiceTaskActionType>
-
- org.activiti.cloud.modeling.api.process.ServiceTaskActionType
-
- All Implemented Interfaces:
Serializable,Comparable<ServiceTaskActionType>
public enum ServiceTaskActionType extends Enum<ServiceTaskActionType>
Extensions service task action types
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ServiceTaskActionTypefromValue(String value)StringgetValue()static ServiceTaskActionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ServiceTaskActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUTS
public static final ServiceTaskActionType INPUTS
-
OUTPUTS
public static final ServiceTaskActionType OUTPUTS
-
-
Method Detail
-
values
public static ServiceTaskActionType[] 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 (ServiceTaskActionType c : ServiceTaskActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceTaskActionType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
public static ServiceTaskActionType fromValue(String value)
-
getValue
public String getValue()
-
-