Serializable
, Comparable<Platform.ABIType>
public static enum Platform.ABIType extends Enum<Platform.ABIType>
Enum Constant | Description |
---|---|
EABI_AARCH64 |
ARM EABI AARCH64 (64bit)
|
EABI_GNU_ARMEL |
ARM GNU-EABI ARMEL -mfloat-abi=softfp
|
EABI_GNU_ARMHF |
ARM GNU-EABI ARMHF -mfloat-abi=hard
|
GENERIC_ABI |
Modifier and Type | Field | Description |
---|---|---|
int |
id |
Modifier and Type | Method | Description |
---|---|---|
boolean |
isCompatible(Platform.ABIType other) |
Returns
true if the given Platform.ABIType is compatible
w/ this one, i.e. |
static Platform.ABIType |
query(Platform.CPUType cpuType,
String cpuABILower) |
|
static Platform.ABIType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Platform.ABIType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.ABIType GENERIC_ABI
public static final Platform.ABIType EABI_GNU_ARMEL
public static final Platform.ABIType EABI_GNU_ARMHF
public static final Platform.ABIType EABI_AARCH64
public static Platform.ABIType[] values()
for (Platform.ABIType c : Platform.ABIType.values()) System.out.println(c);
public static Platform.ABIType 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 final boolean isCompatible(Platform.ABIType other)
true
if the given Platform.ABIType
is compatible
w/ this one, i.e. they are equal.public static final Platform.ABIType query(Platform.CPUType cpuType, String cpuABILower)