Enum CloudBPMNActivity.BPMNActivityStatus
- java.lang.Object
-
- java.lang.Enum<CloudBPMNActivity.BPMNActivityStatus>
-
- org.activiti.cloud.api.process.model.CloudBPMNActivity.BPMNActivityStatus
-
- All Implemented Interfaces:
Serializable,Comparable<CloudBPMNActivity.BPMNActivityStatus>
- Enclosing interface:
- CloudBPMNActivity
public static enum CloudBPMNActivity.BPMNActivityStatus extends Enum<CloudBPMNActivity.BPMNActivityStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CloudBPMNActivity.BPMNActivityStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static CloudBPMNActivity.BPMNActivityStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTED
public static final CloudBPMNActivity.BPMNActivityStatus STARTED
-
COMPLETED
public static final CloudBPMNActivity.BPMNActivityStatus COMPLETED
-
CANCELLED
public static final CloudBPMNActivity.BPMNActivityStatus CANCELLED
-
ERROR
public static final CloudBPMNActivity.BPMNActivityStatus ERROR
-
-
Method Detail
-
values
public static CloudBPMNActivity.BPMNActivityStatus[] 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 (CloudBPMNActivity.BPMNActivityStatus c : CloudBPMNActivity.BPMNActivityStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CloudBPMNActivity.BPMNActivityStatus 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
-
-