public enum FolderKind extends Enum<FolderKind>
| Enum Constant and Description | 
|---|
| MainJavaRepresents a Java main sources folder. | 
| MainResourcesRepresents a Java main resources folder. | 
| ProjectRepresents any other folder in project. | 
| TestJavaRepresents a Java test sources folder. | 
| TestResourcesRepresents 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);