public static enum ProcessConstants.ExecutionMode extends java.lang.Enum<ProcessConstants.ExecutionMode>
| Enum Constant and Description |
|---|
COMPONENT_TEST
The activity should be executed in the test mode, whereas the assigned
application is called itself.
|
PRODUCTION
The activity is executed in the production mode.
|
SUBSTITUTED_TEST
The activity should not be executed, instead it is substituted by a generic
form that displays the values of the declared input parameters and provides
edit fields to generate the value for output parameters manually.
|
VIEW_ONLY
The activity just displays the input and output parameter values but does
not allow to change them.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.ExecutionMode |
valueOf(int code) |
static ProcessConstants.ExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.ExecutionMode SUBSTITUTED_TEST
public static final ProcessConstants.ExecutionMode COMPONENT_TEST
public static final ProcessConstants.ExecutionMode PRODUCTION
public static final ProcessConstants.ExecutionMode VIEW_ONLY
public static ProcessConstants.ExecutionMode[] values()
for (ProcessConstants.ExecutionMode c : ProcessConstants.ExecutionMode.values()) System.out.println(c);
public static ProcessConstants.ExecutionMode 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 namejava.lang.NullPointerException - if the argument is nullpublic int getCode()
public static ProcessConstants.ExecutionMode valueOf(int code)