public enum DexingType extends java.lang.Enum<DexingType>
| Enum Constant and Description |
|---|
LEGACY_MULTIDEX |
MONO_DEX |
NATIVE_MULTIDEX |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isMultiDex() |
boolean |
isPreDex() |
static DexingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DexingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DexingType MONO_DEX
public static final DexingType LEGACY_MULTIDEX
public static final DexingType NATIVE_MULTIDEX
public static DexingType[] values()
for (DexingType c : DexingType.values()) System.out.println(c);
public static DexingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic boolean isMultiDex()
public boolean isPreDex()