Enum Abi

    • Enum Constant Detail

      • GNU

        public static final Abi GNU
        The GNU ABI
      • GNU_EABI_HF

        public static final Abi GNU_EABI_HF
        GNU EABI Hard Floatingpoint
      • GNU_EABI

        public static final Abi GNU_EABI
        GNU EABI Soft Floatingpoint
      • GNU_ABI_64

        public static final Abi GNU_ABI_64
        The GNU 64 bit ABI
      • BSD

        public static final Abi BSD
        The BSD ABI
      • PE32_PLUS

        public static final Abi PE32_PLUS
        Windows ABI on x86_64 (64 bit)
      • PE32

        public static final Abi PE32
        Windows ABI on x86 or i386 (32 bit)
    • Field Detail

      • abiName

        public final String abiName
    • Method Detail

      • values

        public static Abi[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Abi c : Abi.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Abi 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