public enum ABI extends Enum<ABI>
| Enum Constant and Description |
|---|
ARMEABI |
ARMEABI_V7A |
MIPS |
NOT_DEFINED |
X86 |
X86_64 |
| Modifier and Type | Method and Description |
|---|---|
static ABI |
match(String name) |
String |
toString() |
static ABI |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ABI[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ABI NOT_DEFINED
public static final ABI X86
public static final ABI X86_64
public static final ABI ARMEABI
public static final ABI ARMEABI_V7A
public static final ABI MIPS
public static ABI[] values()
for (ABI c : ABI.values()) System.out.println(c);
public static ABI 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 nullCopyright © 2015 JBoss by Red Hat. All rights reserved.