Enum Class Utils.CPUArchitecture

java.lang.Object
java.lang.Enum<Utils.CPUArchitecture>
io.github.cvc5.Utils.CPUArchitecture
All Implemented Interfaces:
Serializable, Comparable<Utils.CPUArchitecture>, Constable
Enclosing class:
Utils

public static enum Utils.CPUArchitecture extends Enum<Utils.CPUArchitecture>
Represent the CPU architecture supported by cvc5. It includes logic to detect the current CPU architecture at runtime.
  • Enum Constant Details

  • Field Details

    • CURRENT

      public static final Utils.CPUArchitecture CURRENT
      The detected CPU architecture on which the application is currently running.
  • Method Details

    • values

      public static Utils.CPUArchitecture[] 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 Utils.CPUArchitecture 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