public enum AppleDebugFormat extends Enum<AppleDebugFormat> implements FlavorConvertible
Enum Constant and Description |
---|
DWARF
Produces an unstripped binary.
|
DWARF_AND_DSYM
Generate a .dSYM file from the binary and its constituent object files.
|
NONE
Produces a binary with the debug map stripped.
|
Modifier and Type | Field and Description |
---|---|
static FlavorDomain<AppleDebugFormat> |
FLAVOR_DOMAIN |
Modifier and Type | Method and Description |
---|---|
Flavor |
getFlavor() |
static AppleDebugFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppleDebugFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppleDebugFormat NONE
public static final AppleDebugFormat DWARF
public static final AppleDebugFormat DWARF_AND_DSYM
public static final FlavorDomain<AppleDebugFormat> FLAVOR_DOMAIN
public static AppleDebugFormat[] values()
for (AppleDebugFormat c : AppleDebugFormat.values()) System.out.println(c);
public static AppleDebugFormat 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 Flavor getFlavor()
getFlavor
in interface FlavorConvertible