public static enum SourceFile.SourceGroup extends Enum<SourceFile.SourceGroup>
src/main or src/test.| Modifier and Type | Method and Description |
|---|---|
static SourceFile.SourceGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourceFile.SourceGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourceFile.SourceGroup MAIN
public static final SourceFile.SourceGroup TESTS
public static SourceFile.SourceGroup[] values()
for (SourceFile.SourceGroup c : SourceFile.SourceGroup.values()) System.out.println(c);
public static SourceFile.SourceGroup 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 © 2015 Atlassian. All rights reserved.