public enum CommandStatus extends java.lang.Enum<CommandStatus>
| Enum Constant and Description |
|---|
DOWNLOADING
Trazendo arquivos de volta para o servidor, via CSFS.
|
EXECUTING
Em execução.
|
FINISHED
Terminado.
|
INIT
O comando já está no SGAService, mas está em fase de inicialização.
|
SCHEDULED
Aguardando sua vez no escalonador.
|
SYSTEM_FAILURE
Ocorreu uma falha no sistema que impossibilitou recuperar os dados do
comando.
|
UPLOADING
Transferindo arquivos via CSFS.
|
| Modifier and Type | Method and Description |
|---|---|
static CommandStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandStatus SCHEDULED
public static final CommandStatus INIT
public static final CommandStatus UPLOADING
public static final CommandStatus EXECUTING
public static final CommandStatus DOWNLOADING
public static final CommandStatus FINISHED
public static final CommandStatus SYSTEM_FAILURE
public static CommandStatus[] values()
for (CommandStatus c : CommandStatus.values()) System.out.println(c);
public static CommandStatus 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 nullCopyright © 2015. All Rights Reserved.