public static enum JkUtilsSystem.Processor.Type extends java.lang.Enum<JkUtilsSystem.Processor.Type>
JkUtilsSystem.Processor.Type
enum defines types of a microprocessor.
The following types are defined:
Enum Constant and Description |
---|
AARCH_64
ARM 64-bit.
|
IA_64
Intel Itanium 64-bit architecture.
|
PPC
Apple–IBM–Motorola PowerPC architecture.
|
UNKNOWN
Unknown architecture.
|
X86
Intel x86 series of instruction set architectures.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel()
Gets the label suitable for display.
|
static JkUtilsSystem.Processor.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JkUtilsSystem.Processor.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JkUtilsSystem.Processor.Type AARCH_64
public static final JkUtilsSystem.Processor.Type X86
public static final JkUtilsSystem.Processor.Type IA_64
public static final JkUtilsSystem.Processor.Type PPC
public static final JkUtilsSystem.Processor.Type UNKNOWN
public static JkUtilsSystem.Processor.Type[] values()
for (JkUtilsSystem.Processor.Type c : JkUtilsSystem.Processor.Type.values()) System.out.println(c);
public static JkUtilsSystem.Processor.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getLabel()