Package org.jbpm.workbench.ht.util
Enum TaskEventType
- java.lang.Object
-
- java.lang.Enum<TaskEventType>
-
- org.jbpm.workbench.ht.util.TaskEventType
-
- All Implemented Interfaces:
Serializable,Comparable<TaskEventType>
public enum TaskEventType extends Enum<TaskEventType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetTypeTranslationId()static TaskEventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TaskEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDED
public static final TaskEventType ADDED
-
UPDATED
public static final TaskEventType UPDATED
-
STARTED
public static final TaskEventType STARTED
-
ACTIVATED
public static final TaskEventType ACTIVATED
-
COMPLETED
public static final TaskEventType COMPLETED
-
STOPPED
public static final TaskEventType STOPPED
-
EXITED
public static final TaskEventType EXITED
-
FAILED
public static final TaskEventType FAILED
-
CLAIMED
public static final TaskEventType CLAIMED
-
SKIPPED
public static final TaskEventType SKIPPED
-
SUSPENDED
public static final TaskEventType SUSPENDED
-
CREATED
public static final TaskEventType CREATED
-
FORWARDED
public static final TaskEventType FORWARDED
-
RELEASED
public static final TaskEventType RELEASED
-
RESUMED
public static final TaskEventType RESUMED
-
DELEGATED
public static final TaskEventType DELEGATED
-
NOMINATED
public static final TaskEventType NOMINATED
-
-
Method Detail
-
values
public static TaskEventType[] 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 (TaskEventType c : TaskEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskEventType 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
-
getTypeTranslationId
public String getTypeTranslationId()
-
-