public enum AndroidTarget extends java.lang.Enum<AndroidTarget> implements Target
| Enum Constant and Description |
|---|
APK |
APK_CAPTIVE_RUNTIME |
APK_DEBUG |
APK_EMULATOR |
APK_PROFILE |
| Modifier and Type | Method and Description |
|---|---|
static AndroidTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AndroidTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidTarget APK
public static final AndroidTarget APK_CAPTIVE_RUNTIME
public static final AndroidTarget APK_DEBUG
public static final AndroidTarget APK_EMULATOR
public static final AndroidTarget APK_PROFILE
public static AndroidTarget[] values()
for (AndroidTarget c : AndroidTarget.values()) System.out.println(c);
public static AndroidTarget 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 null