@API(status=EXPERIMENTAL, since="1.3", consumers="org.junit.platform.engine.support.hierarchical") public static enum Node.ExecutionMode extends java.lang.Enum<Node.ExecutionMode>
SAME_THREAD
,
CONCURRENT
,
Node.getExecutionMode()
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 Node.ExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Node.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.ExecutionMode SAME_THREAD
CONCURRENT
public static final Node.ExecutionMode CONCURRENT
SAME_THREAD
public static Node.ExecutionMode[] values()
for (Node.ExecutionMode c : Node.ExecutionMode.values()) System.out.println(c);
public static Node.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