public enum X86CPURegister32 extends Enum<X86CPURegister32>
QApiEnumDescriptor{name=X86CPURegister32, data=[EAX, EBX, ECX, EDX, ESP, EBP, ESI, EDI], fields=null}
Enum Constant and Description |
---|
__UNKNOWN |
EAX |
EBP |
EBX |
ECX |
EDI |
EDX |
ESI |
ESP |
Modifier and Type | Method and Description |
---|---|
String |
getJsonValue() |
static X86CPURegister32 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X86CPURegister32[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X86CPURegister32 EAX
public static final X86CPURegister32 EBX
public static final X86CPURegister32 ECX
public static final X86CPURegister32 EDX
public static final X86CPURegister32 ESP
public static final X86CPURegister32 EBP
public static final X86CPURegister32 ESI
public static final X86CPURegister32 EDI
public static final X86CPURegister32 __UNKNOWN
public static X86CPURegister32[] values()
for (X86CPURegister32 c : X86CPURegister32.values()) System.out.println(c);
public static X86CPURegister32 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 getJsonValue()