- java.lang.Object
-
- java.lang.Enum<Abi>
-
- de.ibapl.jnhw.libloader.Abi
-
- All Implemented Interfaces:
Serializable,Comparable<Abi>
public enum Abi extends Enum<Abi>
The Application Binary Interface used.- Author:
- aploese
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BSDThe BSD ABIGNUThe GNU ABIGNU_ABI_64The GNU 64 bit ABIGNU_EABIGNU EABI Soft FloatingpointGNU_EABI_HFGNU EABI Hard FloatingpointPE32Windows ABI on x86 or i386 (32 bit)PE32_PLUSWindows ABI on x86_64 (64 bit)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static AbivalueOf(String name)Returns the enum constant of this type with the specified name.static Abi[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException- if the argument is null
-
-