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