public enum FolderKind extends Enum<FolderKind>
Enum Constant and Description |
---|
MainJava
Represents a Java main sources folder.
|
MainResources
Represents a Java main resources folder.
|
Project
Represents any other folder in project.
|
TestJava
Represents a Java test sources folder.
|
TestResources
Represents a Java test resources folder.
|
Modifier and Type | Method and Description |
---|---|
static FolderKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FolderKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FolderKind MainJava
public static final FolderKind MainResources
public static final FolderKind Project
public static final FolderKind TestJava
public static final FolderKind TestResources
public static FolderKind 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 nullpublic static FolderKind[] values()
for (FolderKind c : FolderKind.values()) System.out.println(c);