public static enum ICommandInfo.CommandStatus extends Enum<ICommandInfo.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 ICommandInfo.CommandStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICommandInfo.CommandStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICommandInfo.CommandStatus SCHEDULED
public static final ICommandInfo.CommandStatus INIT
public static final ICommandInfo.CommandStatus UPLOADING
public static final ICommandInfo.CommandStatus EXECUTING
public static final ICommandInfo.CommandStatus DOWNLOADING
public static final ICommandInfo.CommandStatus FINISHED
public static final ICommandInfo.CommandStatus SYSTEM_FAILURE
public static ICommandInfo.CommandStatus[] values()
for (ICommandInfo.CommandStatus c : ICommandInfo.CommandStatus.values()) System.out.println(c);
public static ICommandInfo.CommandStatus 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 © 2016. All rights reserved.