public enum AutoRemoteExecutionStrategy extends Enum<AutoRemoteExecutionStrategy>
| Enum Constant and Description |
|---|
DISABLED |
RE_IF_EXPERIMENT_ENABLED |
RE_IF_EXPERIMENT_ENABLED_AND_WHITELIST_MATCH |
RE_IF_EXPERIMENT_ENABLED_OR_WHITELIST_MATCH |
RE_IF_WHITELIST_MATCH |
| Modifier and Type | Field and Description |
|---|---|
static AutoRemoteExecutionStrategy |
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static AutoRemoteExecutionStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoRemoteExecutionStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoRemoteExecutionStrategy DISABLED
public static final AutoRemoteExecutionStrategy RE_IF_EXPERIMENT_ENABLED
public static final AutoRemoteExecutionStrategy RE_IF_WHITELIST_MATCH
public static final AutoRemoteExecutionStrategy RE_IF_EXPERIMENT_ENABLED_AND_WHITELIST_MATCH
public static final AutoRemoteExecutionStrategy RE_IF_EXPERIMENT_ENABLED_OR_WHITELIST_MATCH
public static final AutoRemoteExecutionStrategy DEFAULT
public static AutoRemoteExecutionStrategy[] values()
for (AutoRemoteExecutionStrategy c : AutoRemoteExecutionStrategy.values()) System.out.println(c);
public static AutoRemoteExecutionStrategy 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 null