public enum Sources extends Enum<Sources>
This enumeration defines standard types for project sources.
| Enum Constant and Description |
|---|
FACES_CONFIGS |
JAVA_SOURCES |
RENDERER_TEMPLATES |
| Modifier and Type | Method and Description |
|---|---|
static Sources |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sources[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sources JAVA_SOURCES
public static final Sources FACES_CONFIGS
public static final Sources RENDERER_TEMPLATES
public static Sources[] values()
for (Sources c : Sources.values()) System.out.println(c);
public static Sources 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.