public static enum Files.FileType extends java.lang.Enum<Files.FileType>
| Enum Constant and Description |
|---|
Absolute
Path that is a fully qualified, absolute filesystem path.
|
Classpath
Path relative to the root of the classpath.
|
External
Path relative to the root of the SD card on Android and to the home directory of the current user on the desktop.
|
Internal
Path relative to the asset directory on Android and to the application's root directory on the desktop.
|
Local
Path relative to the private files directory on Android and to the application's root directory on the desktop.
|
| Modifier and Type | Method and Description |
|---|---|
static Files.FileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Files.FileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Files.FileType Classpath
Audio.newSound(FileHandle) and
Audio.newMusic(FileHandle).public static final Files.FileType Internal
public static final Files.FileType External
public static final Files.FileType Absolute
public static final Files.FileType Local
public static Files.FileType[] values()
for (Files.FileType c : Files.FileType.values()) System.out.println(c);
public static Files.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