java.lang.Object
java.lang.Enum<Processor.Type>
edu.internet2.middleware.grouperClientExt.org.apache.commons.lang3.arch.Processor.Type
All Implemented Interfaces:
Serializable, Comparable<Processor.Type>, java.lang.constant.Constable
Enclosing class:
Processor

public static enum Processor.Type extends Enum<Processor.Type>
The Processor.Type enum defines types of a microprocessor. The following types are defined:
  • x86
  • ia64
  • PPC
  • Unknown
  • Enum Constant Details

    • X86

      public static final Processor.Type X86
      Intel x86 series of instruction set architectures.
    • IA_64

      public static final Processor.Type IA_64
      Intel Itanium 64-bit architecture.
    • PPC

      public static final Processor.Type PPC
      Apple–IBM–Motorola PowerPC architecture.
    • UNKNOWN

      public static final Processor.Type UNKNOWN
      Unknown architecture.
  • Method Details

    • values

      public static Processor.Type[] 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 Processor.Type 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