public enum NdkToolchainTarget extends Enum<NdkToolchainTarget>
Enum Constant and Description |
---|
AARCH64_LINUX_ANDROID |
ARM_LINUX_ANDROIDEABI |
I686_LINUX_ANDROID |
X86_64_LINUX_ANDROID |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NdkToolchainTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NdkToolchainTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NdkToolchainTarget I686_LINUX_ANDROID
public static final NdkToolchainTarget X86_64_LINUX_ANDROID
public static final NdkToolchainTarget ARM_LINUX_ANDROIDEABI
public static final NdkToolchainTarget AARCH64_LINUX_ANDROID
public static NdkToolchainTarget[] values()
for (NdkToolchainTarget c : NdkToolchainTarget.values()) System.out.println(c);
public static NdkToolchainTarget 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 toString()
toString
in class Enum<NdkToolchainTarget>