public static enum CreateDirectoryPathTask.ErrorCode extends Enum<CreateDirectoryPathTask.ErrorCode>
| Enum Constant and Description |
|---|
NO_ERROR
Execução sem erro
|
NOT_EXECUTED
Tarefa não executada
|
RMI_FAILURE
Falha de RMI
|
RUNTIME_EXCEPTION
Exceção unchecked
|
UNKNOWN
Erro desconhecido
|
| Modifier and Type | Method and Description |
|---|---|
static CreateDirectoryPathTask.ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CreateDirectoryPathTask.ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CreateDirectoryPathTask.ErrorCode NOT_EXECUTED
public static final CreateDirectoryPathTask.ErrorCode NO_ERROR
public static final CreateDirectoryPathTask.ErrorCode RUNTIME_EXCEPTION
public static final CreateDirectoryPathTask.ErrorCode RMI_FAILURE
public static final CreateDirectoryPathTask.ErrorCode UNKNOWN
public static CreateDirectoryPathTask.ErrorCode[] values()
for (CreateDirectoryPathTask.ErrorCode c : CreateDirectoryPathTask.ErrorCode.values()) System.out.println(c);
public static CreateDirectoryPathTask.ErrorCode 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 © 2019. All rights reserved.