public static enum GroupedSource.Type extends Enum<GroupedSource.Type>
Enum Constant and Description |
---|
IGNORED_SOURCE
A single
SourcePath that shouldn't be included in the build phase. |
PRIVATE_HEADER
A single
SourcePath representing a private header file. |
PUBLIC_HEADER
A single
SourcePath representing a public header file. |
SOURCE_GROUP
A source group (group name and one or more GroupedSource objects).
|
SOURCE_WITH_FLAGS
A single
SourceWithFlags . |
Modifier and Type | Method and Description |
---|---|
static GroupedSource.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupedSource.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupedSource.Type SOURCE_WITH_FLAGS
SourceWithFlags
.public static final GroupedSource.Type IGNORED_SOURCE
SourcePath
that shouldn't be included in the build phase.public static final GroupedSource.Type PUBLIC_HEADER
SourcePath
representing a public header file.public static final GroupedSource.Type PRIVATE_HEADER
SourcePath
representing a private header file.public static final GroupedSource.Type SOURCE_GROUP
public static GroupedSource.Type[] values()
for (GroupedSource.Type c : GroupedSource.Type.values()) System.out.println(c);
public static GroupedSource.Type 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