Serializable
, Comparable<Platform.CPUFamily>
public static enum Platform.CPUFamily extends Enum<Platform.CPUFamily>
Enum Constant | Description |
---|---|
ARM |
ARM
|
IA64 |
Itanium
|
MIPS |
Mips
|
PA_RISC |
PA RISC
|
PPC |
Power PC
|
S390 |
IBM ESA/390 and zSystems
|
SPARC |
SPARC
|
SuperH |
Hitachi SuperH
|
X86 |
AMD/Intel
|
Modifier and Type | Method | 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 final Platform.CPUFamily SuperH
public static final Platform.CPUFamily S390
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