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

public static enum Processor.Arch extends Enum<Processor.Arch>
The Processor.Arch enum defines the architecture of a microprocessor. The architecture represents the bit value of the microprocessor. The following architectures are defined:
  • 32-bit
  • 64-bit
  • Unknown
  • Enum Constant Details

    • BIT_32

      public static final Processor.Arch BIT_32
      A 32-bit processor architecture.
    • BIT_64

      public static final Processor.Arch BIT_64
      A 64-bit processor architecture.
    • UNKNOWN

      public static final Processor.Arch UNKNOWN
      An unknown-bit processor architecture.
  • Method Details

    • values

      public static Processor.Arch[] 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.Arch 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
    • getLabel

      public String getLabel()
      Gets the label suitable for display.
      Returns:
      the label.