public enum AppleBundleExtension extends Enum<AppleBundleExtension>
Enum Constant and Description |
---|
APP |
APPEX |
BUNDLE |
DSYM |
FRAMEWORK |
PLUGIN |
PREFPANE |
QLGENERATOR |
XCTEST |
XPC |
Modifier and Type | Method and Description |
---|---|
String |
toFileExtension() |
static AppleBundleExtension |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppleBundleExtension[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppleBundleExtension APP
public static final AppleBundleExtension FRAMEWORK
public static final AppleBundleExtension APPEX
public static final AppleBundleExtension PLUGIN
public static final AppleBundleExtension BUNDLE
public static final AppleBundleExtension XCTEST
public static final AppleBundleExtension DSYM
public static final AppleBundleExtension XPC
public static final AppleBundleExtension PREFPANE
public static final AppleBundleExtension QLGENERATOR
public static AppleBundleExtension[] values()
for (AppleBundleExtension c : AppleBundleExtension.values()) System.out.println(c);
public static AppleBundleExtension 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 String toFileExtension()