Enum Class AndroidPlatformABI
java.lang.Object
java.lang.Enum<AndroidPlatformABI>
com.pnfsoftware.jeb.core.units.code.android.adb.AndroidPlatformABI
- All Implemented Interfaces:
Serializable
,Comparable<AndroidPlatformABI>
,Constable
Well-known Android-supported Application Binary Interfaces.
Note that the armeabi, mips and mips64 platforms have been deprecated since the NDK release 17.
Reference: https://developer.android.com/ndk/guides/abis.html
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic AndroidPlatformABI
boolean
isARM()
boolean
boolean
isIntel()
boolean
isMIPS()
toString()
static AndroidPlatformABI
Returns the enum constant of this class with the specified name.static AndroidPlatformABI[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ARM
-
ARM7
-
ARM64
-
MIPS
-
MIPS64
-
X86
-
X64
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
isIntel
public boolean isIntel() -
isARM
public boolean isARM() -
isMIPS
public boolean isMIPS() -
isDeprecated
public boolean isDeprecated()- Returns:
- true if first-tier support for this ABI was officially removed from Android
-
toString
- Overrides:
toString
in classEnum<AndroidPlatformABI>
-
fromName
-