public static enum Processor.Type extends java.lang.Enum<Processor.Type>
Processor.Type enum defines types of a microprocessor.
The following types are defined:
| Enum Constant and Description |
|---|
IA_64
Intel Itanium 64-bit architecture.
|
PPC
AppleIBMMotorola PowerPC architecture.
|
UNKNOWN
Unknown architecture.
|
X86
Intel x86 series of instruction set architectures.
|
| Modifier and Type | Method and Description |
|---|---|
static Processor.Type |
valueOf(java.lang.String name)
Returns 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.
|
public static final Processor.Type X86
public static final Processor.Type IA_64
public static final Processor.Type PPC
public static final Processor.Type UNKNOWN
public static Processor.Type[] values()
for (Processor.Type c : Processor.Type.values()) System.out.println(c);
public static 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 null"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"