public static enum TestOptions.Execution extends java.lang.Enum<TestOptions.Execution>
| Enum Constant and Description |
|---|
ANDROID_TEST_ORCHESTRATOR
On device orchestration is now used
|
HOST
On device orchestration is not used in this case
|
| Modifier and Type | Method and Description |
|---|---|
static TestOptions.Execution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestOptions.Execution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestOptions.Execution HOST
public static final TestOptions.Execution ANDROID_TEST_ORCHESTRATOR
public static TestOptions.Execution[] values()
for (TestOptions.Execution c : TestOptions.Execution.values()) System.out.println(c);
public static TestOptions.Execution 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