|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<WorkflowStep.Type>
com.ibm.pim.workflow.WorkflowStep.Type
public static enum WorkflowStep.Type
Enum Constant Summary | |
---|---|
AND_APPROVAL_STEP
Approval step where all the performers must approve/reject an entry/entries before it can move to the next step. |
|
AUTOMATED_STEP
This step does not require any action from the user to proceed. |
|
CONDENSER_STEP
This step is used in front of a merge step to reduce the number of paths into a merge step. |
|
DISPATCH_STEP
The step allows users to decide which next step should be taken. |
|
FAILURE_STEP
If an entry/entries reach the Failure Step in Workflow, the system removes the entry/entries from the collaboration area. |
|
FIXIT
This step is a special step used to repair entries. |
|
GENERAL_STEP
This step causes an entry/entries to wait in this step. |
|
INITIAL_STEP
Present as the first step in a workflow, and there is one instance of an Initial step per Workflow. |
|
INTERIM_CHECKIN_STEP
This step saves any changes done to attribute values in this workflow back to the source container (catalog or hierarchy), then moves the entry or entries onto the next step in the workflow. |
|
INTERIM_CHECKOUT_STEP
This step is used to undo the changes done to attribute values in this workflow. |
|
MAKE_UNIQUE_STEP
When an entry or entries enter the step, remove every other copy of the entry/entries from other branches of the workflow. |
|
MERGE_STEP
To merge the entries coming out of several steps after a split. |
|
MODIFY_STEP
Allows users to modify attributes of an entry/entries. |
|
NESTED_WORKFLOW_STEP
This step is used to include another workflow as a step. |
|
OR_APPROVAL_STEP
Approval step where any of the performers can approve/reject an entry/entries before it can move to the next step. |
|
SUCCESS_STEP
If an entry/entries reach the Success step in a workflow the system attempts to check the entry/entries into the source container(catalog or hierarchy) of the collaboration area of this workflow. |
|
WAIT_STEP
Allows users to modify attributes of an entry/entries. |
Method Summary | |
---|---|
static WorkflowStep.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static WorkflowStep.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final WorkflowStep.Type FAILURE_STEP
public static final WorkflowStep.Type INITIAL_STEP
public static final WorkflowStep.Type SUCCESS_STEP
public static final WorkflowStep.Type AND_APPROVAL_STEP
public static final WorkflowStep.Type OR_APPROVAL_STEP
public static final WorkflowStep.Type DISPATCH_STEP
public static final WorkflowStep.Type MODIFY_STEP
public static final WorkflowStep.Type WAIT_STEP
public static final WorkflowStep.Type GENERAL_STEP
public static final WorkflowStep.Type AUTOMATED_STEP
public static final WorkflowStep.Type MAKE_UNIQUE_STEP
public static final WorkflowStep.Type MERGE_STEP
public static final WorkflowStep.Type CONDENSER_STEP
public static final WorkflowStep.Type INTERIM_CHECKOUT_STEP
public static final WorkflowStep.Type INTERIM_CHECKIN_STEP
public static final WorkflowStep.Type NESTED_WORKFLOW_STEP
public static final WorkflowStep.Type FIXIT
Method Detail |
---|
public static final WorkflowStep.Type[] values()
for(WorkflowStep.Type c : WorkflowStep.Type.values()) System.out.println(c);
public static WorkflowStep.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |