@API(status=EXPERIMENTAL,
since="1.3",
consumers="org.junit.platform.engine.support.hierarchical")
public static enum Node.ExecutionMode
extends 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(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
CONCURRENTpublic static final Node.ExecutionMode CONCURRENT
SAME_THREADpublic static Node.ExecutionMode[] values()
for (Node.ExecutionMode c : Node.ExecutionMode.values()) System.out.println(c);
public static Node.ExecutionMode 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 nullCopyright © 2024. All rights reserved.