public static enum AppleBuildRules.RecursiveDependenciesMode extends Enum<AppleBuildRules.RecursiveDependenciesMode>
Enum Constant and Description |
---|
BUILDING
Will traverse all rules that are built.
|
COPYING
Will also not traverse the dependencies of bundles, as those are copied inside the bundle.
|
COPYING_INCLUDE_SHARED_RESOURCES
Will traverse the dependencies of #shared libraries since the library may not be contained in
a bundle.
|
LINKING
Will also not traverse the dependencies of shared libraries, as those are linked already.
|
Modifier and Type | Method and Description |
---|---|
static AppleBuildRules.RecursiveDependenciesMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppleBuildRules.RecursiveDependenciesMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppleBuildRules.RecursiveDependenciesMode BUILDING
public static final AppleBuildRules.RecursiveDependenciesMode COPYING
public static final AppleBuildRules.RecursiveDependenciesMode COPYING_INCLUDE_SHARED_RESOURCES
public static final AppleBuildRules.RecursiveDependenciesMode LINKING
public static AppleBuildRules.RecursiveDependenciesMode[] values()
for (AppleBuildRules.RecursiveDependenciesMode c : AppleBuildRules.RecursiveDependenciesMode.values()) System.out.println(c);
public static AppleBuildRules.RecursiveDependenciesMode 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