Package com.jogamp.common.os
Enum Platform.ABIType
- All Implemented Interfaces:
Serializable,Comparable<Platform.ABIType>,java.lang.constant.Constable
- Enclosing class:
- Platform
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionARM EABI AARCH64 (64bit)ARM GNU-EABI ARMEL -mfloat-abi=softfpARM GNU-EABI ARMHF -mfloat-abi=hard -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanisCompatible(Platform.ABIType other) Returnstrueif the givenPlatform.ABITypeis compatible w/ this one, i.e.static final Platform.ABITypequery(Platform.CPUType cpuType, String cpuABILower) static Platform.ABITypeReturns 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.
-
Enum Constant Details
-
GENERIC_ABI
-
EABI_GNU_ARMEL
ARM GNU-EABI ARMEL -mfloat-abi=softfp -
EABI_GNU_ARMHF
ARM GNU-EABI ARMHF -mfloat-abi=hard -
EABI_AARCH64
ARM EABI AARCH64 (64bit)
-
-
Field Details
-
id
public final int id
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isCompatible
Returnstrueif the givenPlatform.ABITypeis compatible w/ this one, i.e. they are equal. -
query
-