public static enum Platform.CPU_TYPE extends Enum<Platform.CPU_TYPE>
Enum Constant and Description |
---|
ARM |
I386 |
POWERPC |
POWERPC64 |
S390X |
SPARC |
SPARCV9 |
UNKNOWN |
X86_64 |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Platform.CPU_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform.CPU_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Platform.CPU_TYPE I386
public static final Platform.CPU_TYPE X86_64
public static final Platform.CPU_TYPE POWERPC
public static final Platform.CPU_TYPE POWERPC64
public static final Platform.CPU_TYPE SPARC
public static final Platform.CPU_TYPE SPARCV9
public static final Platform.CPU_TYPE S390X
public static final Platform.CPU_TYPE ARM
public static final Platform.CPU_TYPE UNKNOWN
public static Platform.CPU_TYPE[] values()
for (Platform.CPU_TYPE c : Platform.CPU_TYPE.values()) System.out.println(c);
public static Platform.CPU_TYPE 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 nullpublic String toString()
toString
in class Enum<Platform.CPU_TYPE>
Copyright © 2001–2015 JRuby. All rights reserved.