Enum CpuArch

java.lang.Object
java.lang.Enum<CpuArch>
org.robovm.compiler.config.CpuArch
All Implemented Interfaces:
Serializable, Comparable<CpuArch>

public enum CpuArch
extends Enum<CpuArch>
Author:
niklas
  • Enum Constant Details

    • x86

      public static final CpuArch x86
    • x86_64

      public static final CpuArch x86_64
    • thumbv7

      public static final CpuArch thumbv7
    • arm64

      public static final CpuArch arm64
  • Method Details

    • values

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

      public static CpuArch valueOf​(String name)
      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 name
      NullPointerException - if the argument is null
    • getLlvmName

      public String getLlvmName()
    • getClangName

      public String getClangName()
    • getLlvmCpu

      public String getLlvmCpu()
    • isArm

      public boolean isArm()
    • is32Bit

      public boolean is32Bit()
    • getByteOrder

      public ByteOrder getByteOrder()
    • getDefaultArch

      public static CpuArch getDefaultArch()