protected static enum FrameworkPath.Type extends Enum<FrameworkPath.Type>
| Enum Constant and Description |
|---|
SOURCE_PATH
A Buck style
SourcePath. |
SOURCE_TREE_PATH
An Xcode style
SourceTreePath. |
| Modifier and Type | Method and Description |
|---|---|
static FrameworkPath.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FrameworkPath.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrameworkPath.Type SOURCE_TREE_PATH
SourceTreePath.public static final FrameworkPath.Type SOURCE_PATH
SourcePath.public static FrameworkPath.Type[] values()
for (FrameworkPath.Type c : FrameworkPath.Type.values()) System.out.println(c);
public static FrameworkPath.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