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