@API(status=EXPERIMENTAL,
since="5.3")
public enum ExecutionMode
extends java.lang.Enum<ExecutionMode>
SAME_THREAD,
CONCURRENT| Enum Constant and Description |
|---|
CONCURRENT
Allow concurrent execution with any other node.
|
SAME_THREAD
Force execution in same thread as the parent node.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode SAME_THREAD
CONCURRENTpublic static final ExecutionMode CONCURRENT
SAME_THREADpublic static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static 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 null