public enum ExecutionLocation extends Enum<ExecutionLocation>
| Modifier and Type | Class and Description |
|---|---|
static class |
ExecutionLocation.ExecutionLocationConverter
Converte strings para valores da enumeração ExecutionLocation.
|
| Enum Constant and Description |
|---|
BINARY_DIR
Diretório de binários do algoritmo.
|
PERSISTENCY_DIR
Diretório de persistência do comando.
|
SANDBOX
Sandbox de execução do comando.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionLocation BINARY_DIR
public static final ExecutionLocation PERSISTENCY_DIR
public static final ExecutionLocation SANDBOX
public static ExecutionLocation[] values()
for (ExecutionLocation c : ExecutionLocation.values()) System.out.println(c);
public static ExecutionLocation 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 © 2017. All rights reserved.