Enum Constant and Description |
---|
ABI_ARM
Represents armeabi ABI
|
ABI_ARM64_V8A
Represents arm64-v8a ABI
|
ABI_ARMV7A
Represents armeabi-v7a ABI
|
ABI_ARMV7A_NEON
Represents armeabi-v7a ABI with NEON support
|
ABI_UNKNOWN
Represents not supported ABIs
|
ABI_X86
Represents x86 ABI
|
ABI_X86_64
Represents x86_64 ABI
|
Modifier and Type | Method and Description |
---|---|
static Abi |
from(java.lang.String abiName)
Returns the enumeration defined for the given ABI name.
|
java.lang.String |
getName()
Returns the ABI name.
|
static Abi |
valueOf(java.lang.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 ABI_ARMV7A_NEON
public static final Abi ABI_ARMV7A
public static final Abi ABI_ARM
public static final Abi ABI_X86
public static final Abi ABI_X86_64
public static final Abi ABI_ARM64_V8A
public static final Abi ABI_UNKNOWN
public static Abi[] values()
for (Abi c : Abi.values()) System.out.println(c);
public static Abi valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Abi from(java.lang.String abiName)
Returns the enumeration defined for the given ABI name.
abiName
- ABI namepublic java.lang.String getName()