public enum Outputs extends Enum<Outputs>
This enumeration defines standard types of output folders.
| Enum Constant and Description |
|---|
DOCUMENTATION |
JAVA_CLASSES |
LIBRARY_CACHE |
RESOURCES |
TEST_JAVA_CLASSES |
TEST_RESOURCES |
| Modifier and Type | Method and Description |
|---|---|
static Outputs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Outputs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Outputs JAVA_CLASSES
public static final Outputs RESOURCES
public static final Outputs TEST_JAVA_CLASSES
public static final Outputs TEST_RESOURCES
public static final Outputs DOCUMENTATION
public static final Outputs LIBRARY_CACHE
public static Outputs[] values()
for (Outputs c : Outputs.values()) System.out.println(c);
public static Outputs 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 © 2014 JBoss by Red Hat. All Rights Reserved.