@Deprecated public enum CPU extends Enum<CPU>
Enum Constant and Description |
---|
X86_32
Deprecated.
|
X86_64
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static CPU |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static CPU[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CPU X86_32
public static final CPU X86_64
public static final CPU I386
public static CPU[] values()
for (CPU c : CPU.values()) System.out.println(c);
public static CPU 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 nullCopyright © 2017. All rights reserved.