Package org.apache.commons.lang3.arch
Enum Processor.Type
- All Implemented Interfaces:
- Serializable,- Comparable<Processor.Type>
- Enclosing class:
- Processor
The 
Processor.Type enum defines types of a microprocessor.
 The following types are defined:
 - AArch64
- x86
- ia64
- PPC
- RISCV
- Unknown
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptiongetLabel()Gets the label suitable for display.static Processor.TypeReturns the enum constant of this type with the specified name.static Processor.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
AARCH_64ARM 64-bit.- Since:
- 3.13.0
 
- 
X86Intel x86 series of instruction set architectures.
- 
IA_64Intel Itanium 64-bit architecture.
- 
PPCApple–IBM–Motorola PowerPC architecture.
- 
RISC_VRISC-V architecture.- Since:
- 3.14.0
 
- 
UNKNOWNUnknown architecture.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
getLabelGets the label suitable for display.- Returns:
- the label.
- Since:
- 3.13.0
 
 
-