| Enum Constant and Description |
|---|
EXTERNAL
Desktop: Absolute path on filesystem
Android: Path relative to the root of the SD card iOS: Console: Player storage |
INTERNAL
Desktop: Jar asset directory
Android: Asset directory iOS: Console: ROM resource |
LOCAL
Desktop: Folder relative to executing JAR
Android: Private app files directory iOS: Console: Game data directory |
| Modifier and Type | Method and Description |
|---|---|
static FileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileType INTERNAL
public static final FileType EXTERNAL
public static final FileType LOCAL
public static FileType[] values()
for (FileType c : FileType.values()) System.out.println(c);
public static FileType 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 null