public enum DirType extends Enum<DirType>
Enum Constant and Description |
---|
BIN
Binaries directory.
|
CLASSES
Java classes directory.
|
DOC
Documentation directory.
|
HELP
Help directory.
|
RES
Resources directory.
|
SRC
Source directory.
|
TEST
Test directory.
|
TMP
Tmp directory.
|
Modifier and Type | Method and Description |
---|---|
static DirType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirType SRC
public static final DirType CLASSES
public static final DirType TMP
public static final DirType DOC
public static final DirType TEST
public static final DirType RES
public static final DirType BIN
public static final DirType HELP
public static DirType[] values()
for (DirType c : DirType.values()) System.out.println(c);
public static DirType 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 null