Enum ProcessRuntimeEvent.ProcessEvents
- java.lang.Object
-
- java.lang.Enum<ProcessRuntimeEvent.ProcessEvents>
-
- org.activiti.api.process.model.events.ProcessRuntimeEvent.ProcessEvents
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ProcessRuntimeEvent.ProcessEvents>
- Enclosing interface:
- ProcessRuntimeEvent<T extends ProcessInstance>
public static enum ProcessRuntimeEvent.ProcessEvents extends java.lang.Enum<ProcessRuntimeEvent.ProcessEvents>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PROCESS_CANCELLEDPROCESS_COMPLETEDPROCESS_CREATEDPROCESS_RESUMEDPROCESS_STARTEDPROCESS_SUSPENDEDPROCESS_UPDATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessRuntimeEvent.ProcessEventsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ProcessRuntimeEvent.ProcessEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS_CREATED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_CREATED
-
PROCESS_STARTED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_STARTED
-
PROCESS_COMPLETED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_COMPLETED
-
PROCESS_CANCELLED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_CANCELLED
-
PROCESS_SUSPENDED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_SUSPENDED
-
PROCESS_RESUMED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_RESUMED
-
PROCESS_UPDATED
public static final ProcessRuntimeEvent.ProcessEvents PROCESS_UPDATED
-
-
Method Detail
-
values
public static ProcessRuntimeEvent.ProcessEvents[] 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 (ProcessRuntimeEvent.ProcessEvents c : ProcessRuntimeEvent.ProcessEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessRuntimeEvent.ProcessEvents 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
-
-