Enum TaskRuntimeEvent.TaskEvents
- java.lang.Object
-
- java.lang.Enum<TaskRuntimeEvent.TaskEvents>
-
- org.activiti.api.task.model.events.TaskRuntimeEvent.TaskEvents
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TaskRuntimeEvent.TaskEvents>
- Enclosing interface:
- TaskRuntimeEvent<T extends Task>
public static enum TaskRuntimeEvent.TaskEvents extends java.lang.Enum<TaskRuntimeEvent.TaskEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TASK_ACTIVATEDTASK_ASSIGNEDTASK_CANCELLEDTASK_COMPLETEDTASK_CREATEDTASK_SUSPENDEDTASK_UPDATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskRuntimeEvent.TaskEventsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TaskRuntimeEvent.TaskEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TASK_ASSIGNED
public static final TaskRuntimeEvent.TaskEvents TASK_ASSIGNED
-
TASK_COMPLETED
public static final TaskRuntimeEvent.TaskEvents TASK_COMPLETED
-
TASK_CREATED
public static final TaskRuntimeEvent.TaskEvents TASK_CREATED
-
TASK_UPDATED
public static final TaskRuntimeEvent.TaskEvents TASK_UPDATED
-
TASK_ACTIVATED
public static final TaskRuntimeEvent.TaskEvents TASK_ACTIVATED
-
TASK_SUSPENDED
public static final TaskRuntimeEvent.TaskEvents TASK_SUSPENDED
-
TASK_CANCELLED
public static final TaskRuntimeEvent.TaskEvents TASK_CANCELLED
-
-
Method Detail
-
values
public static TaskRuntimeEvent.TaskEvents[] 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 (TaskRuntimeEvent.TaskEvents c : TaskRuntimeEvent.TaskEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskRuntimeEvent.TaskEvents 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
-
-