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