public enum StripStyle extends Enum<StripStyle> implements FlavorConvertible
| Enum Constant and Description |
|---|
ALL_SYMBOLS
Completely strips the binary, removing the symbol table and relocation information.
|
DEBUGGING_SYMBOLS
Strips debugging symbols, but saves local and global symbols.
|
NON_GLOBAL_SYMBOLS
Strips non-global symbols, but saves external symbols.
|
| Modifier and Type | Field and Description |
|---|---|
static FlavorDomain<StripStyle> |
FLAVOR_DOMAIN |
| Modifier and Type | Method and Description |
|---|---|
Flavor |
getFlavor() |
com.google.common.collect.ImmutableList<String> |
getStripToolArgs() |
static StripStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StripStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StripStyle DEBUGGING_SYMBOLS
public static final StripStyle NON_GLOBAL_SYMBOLS
public static final StripStyle ALL_SYMBOLS
public static final FlavorDomain<StripStyle> FLAVOR_DOMAIN
public static StripStyle[] values()
for (StripStyle c : StripStyle.values()) System.out.println(c);
public static StripStyle 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 com.google.common.collect.ImmutableList<String> getStripToolArgs()
public Flavor getFlavor()
getFlavor in interface FlavorConvertible