public enum ProcessAction extends Enum<ProcessAction>
Enum Constant and Description |
---|
INIT
initial execution mode for process workflow
|
NEXT
execute only next step
|
PAUSE
pause execution mode
|
REPLAY
execute one more time last executed step
|
RESUME
resume execution mode (all step will be executed)
|
START
start execution mode for process workflow
|
Modifier and Type | Method and Description |
---|---|
static ProcessAction |
getProcessAction(String value)
Returns Enum from value
|
String |
getValue() |
static ProcessAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessAction INIT
public static final ProcessAction NEXT
public static final ProcessAction RESUME
public static final ProcessAction PAUSE
public static final ProcessAction REPLAY
public static final ProcessAction START
public static ProcessAction[] values()
for (ProcessAction c : ProcessAction.values()) System.out.println(c);
public static ProcessAction valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public static ProcessAction getProcessAction(String value)
value
- of process workflow in String formatCopyright © 2018 Vitam. All rights reserved.