public enum DirOptions extends Enum<DirOptions>
| Enum Constant and Description |
|---|
JAVA_GENDIR_OUTPUT |
JAVA_SRCDIR_OUTPUT |
TEST_DIR_OUTPUT |
| Modifier and Type | Method and Description |
|---|---|
static DirOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DirOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DirOptions TEST_DIR_OUTPUT
public static final DirOptions JAVA_GENDIR_OUTPUT
public static final DirOptions JAVA_SRCDIR_OUTPUT
public static DirOptions[] values()
for (DirOptions c : DirOptions.values()) System.out.println(c);
public static DirOptions 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 © 2022. All rights reserved.