public enum AppleBundleDestination extends Enum<AppleBundleDestination>
Enum Constant and Description |
---|
APPCLIPS |
EXECUTABLES |
FRAMEWORKS |
PLUGINS |
RESOURCES |
XPCSERVICES |
Modifier and Type | Method and Description |
---|---|
static AppleBundleDestination |
defaultValue() |
Path |
getPath(com.facebook.buck.apple.AppleBundleDestinations destinations) |
static AppleBundleDestination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppleBundleDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppleBundleDestination RESOURCES
public static final AppleBundleDestination FRAMEWORKS
public static final AppleBundleDestination APPCLIPS
public static final AppleBundleDestination EXECUTABLES
public static final AppleBundleDestination PLUGINS
public static final AppleBundleDestination XPCSERVICES
public static AppleBundleDestination[] values()
for (AppleBundleDestination c : AppleBundleDestination.values()) System.out.println(c);
public static AppleBundleDestination 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 AppleBundleDestination defaultValue()
public Path getPath(com.facebook.buck.apple.AppleBundleDestinations destinations)
destinations
- Platform-specific set of concrete path values in a bundle.