public static enum Platform.CPUFamily extends Enum<Platform.CPUFamily>
| Enum Constant and Description |
|---|
ARM
ARM
|
IA64
Itanium
|
MIPS
Mips
|
PA_RISC
PA RISC
|
PPC
Power PC
|
SPARC
SPARC
|
X86
AMD/Intel
|
| Modifier and Type | Field and Description |
|---|---|
int |
id |
| Modifier and Type | Method and Description |
|---|---|
static Platform.CPUFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform.CPUFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.CPUFamily X86
public static final Platform.CPUFamily ARM
public static final Platform.CPUFamily PPC
public static final Platform.CPUFamily SPARC
public static final Platform.CPUFamily MIPS
public static final Platform.CPUFamily PA_RISC
public static final Platform.CPUFamily IA64
public static Platform.CPUFamily[] values()
for (Platform.CPUFamily c : Platform.CPUFamily.values()) System.out.println(c);
public static Platform.CPUFamily valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null