Package io.graphenee.jbpm.embedded.flow
Enum GxFlowUserTaskForm.GxTaskAction
- java.lang.Object
-
- java.lang.Enum<GxFlowUserTaskForm.GxTaskAction>
-
- io.graphenee.jbpm.embedded.flow.GxFlowUserTaskForm.GxTaskAction
-
- All Implemented Interfaces:
Serializable,Comparable<GxFlowUserTaskForm.GxTaskAction>
- Enclosing class:
- GxFlowUserTaskForm<T>
public static enum GxFlowUserTaskForm.GxTaskAction extends Enum<GxFlowUserTaskForm.GxTaskAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GxFlowUserTaskForm.GxTaskActionvalueOf(String name)Returns the enum constant of this type with the specified name.static GxFlowUserTaskForm.GxTaskAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVED
public static final GxFlowUserTaskForm.GxTaskAction APPROVED
-
REJECTED
public static final GxFlowUserTaskForm.GxTaskAction REJECTED
-
COMPLETED
public static final GxFlowUserTaskForm.GxTaskAction COMPLETED
-
ASSIGNED
public static final GxFlowUserTaskForm.GxTaskAction ASSIGNED
-
SKIPPED
public static final GxFlowUserTaskForm.GxTaskAction SKIPPED
-
-
Method Detail
-
values
public static GxFlowUserTaskForm.GxTaskAction[] 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 (GxFlowUserTaskForm.GxTaskAction c : GxFlowUserTaskForm.GxTaskAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GxFlowUserTaskForm.GxTaskAction 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
-
-