Package org.sosy_lab.common
Enum Class NativeLibraries.Architecture
- All Implemented Interfaces:
Serializable,Comparable<NativeLibraries.Architecture>,Constable
- Enclosing class:
- NativeLibraries
@Deprecated
public static enum NativeLibraries.Architecture
extends Enum<NativeLibraries.Architecture>
Deprecated.
-
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 NativeLibraries.ArchitectureDeprecated.Get the architecture of the current JVM, e.g., as required to load binary libraries.static NativeLibraries.ArchitectureDeprecated.Returns the enum constant of this class with the specified name.static NativeLibraries.Architecture[]values()Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
X86
Deprecated. -
X86_64
Deprecated. -
ARM64
Deprecated.
-
-
Method Details
-
values
Deprecated.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
Deprecated.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
-
guessVmArchitecture
Deprecated.Get the architecture of the current JVM, e.g., as required to load binary libraries.In most cases, the JVM architecture matches system architecture. In some cases, the system architecture is not sufficient. For example, we could execute a 32bit JVM on a 64bit system. We cannot check each possible combination, but check only the important ones like X86_64.
-