public enum FileLocationType extends Enum<FileLocationType>
IFile quanto a sua
localização. Atualmente, existem apenas 2 tipos: Local (arquivo na máquina
do usuário) e Remoto (arquivo de projeto do usuário).| Enum Constant and Description |
|---|
LOCAL
Item de enumeração que indica que um
IFile é um arquivo local. |
REMOTE
Item de enumeração que indica que um
IFile é um arquivo de
projeto. |
| Modifier and Type | Method and Description |
|---|---|
static FileLocationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileLocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileLocationType LOCAL
IFile é um arquivo local.public static final FileLocationType REMOTE
IFile é um arquivo de
projeto.public static FileLocationType[] values()
for (FileLocationType c : FileLocationType.values()) System.out.println(c);
public static FileLocationType 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 Tecgraf/PUC-Rio. All rights reserved.