public enum FolderKind extends java.lang.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(java.lang.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 TestJava
public static final FolderKind TestResources
public static final FolderKind Project
public static FolderKind[] values()
for (FolderKind c : FolderKind.values()) System.out.println(c);
public static FolderKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null