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

public enum AndroidPlatformABI extends Enum<AndroidPlatformABI>
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

  • Enum Constant Details

  • Method Details

    • values

      public static AndroidPlatformABI[] 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

      public static AndroidPlatformABI valueOf(String name)
      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 name
      NullPointerException - 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

      public String toString()
      Overrides:
      toString in class Enum<AndroidPlatformABI>
    • fromName

      public static AndroidPlatformABI fromName(String name)