public static enum FileCopierPage.PathType extends java.lang.Enum<FileCopierPage.PathType>
Enum Constant and Description |
---|
ABSOLUTE
Path relative to the filesystem root.
|
LOGDIR
Path relative to the current YAAC log directory.
|
TILEDIR
Path relative to the current YAAC tile directory.
|
YAAC_BASE
Path relative to the YAAC installation directory.
|
Modifier and Type | Method and Description |
---|---|
static FileCopierPage.PathType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileCopierPage.PathType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileCopierPage.PathType YAAC_BASE
public static final FileCopierPage.PathType TILEDIR
public static final FileCopierPage.PathType LOGDIR
public static final FileCopierPage.PathType ABSOLUTE
public static FileCopierPage.PathType[] values()
for (FileCopierPage.PathType c : FileCopierPage.PathType.values()) System.out.println(c);
public static FileCopierPage.PathType 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