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