public enum VMOpType extends Enum<VMOpType>
| Enum Constant and Description |
|---|
VM_OPINT |
VM_OPNONE |
VM_OPREG |
VM_OPREGMEM |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(int opType) |
static VMOpType |
findOpType(int opType) |
int |
getOpType() |
static VMOpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VMOpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VMOpType VM_OPREG
public static final VMOpType VM_OPINT
public static final VMOpType VM_OPREGMEM
public static final VMOpType VM_OPNONE
public static VMOpType[] values()
for (VMOpType c : VMOpType.values()) System.out.println(c);
public static VMOpType 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 int getOpType()
public boolean equals(int opType)
public static VMOpType findOpType(int opType)
Copyright © 2017. All rights reserved.