Uses of Class
com.strobel.assembler.ir.OperandType
-
Packages that use OperandType Package Description com.strobel.assembler.ir -
-
Uses of OperandType in com.strobel.assembler.ir
Fields in com.strobel.assembler.ir declared as OperandType Modifier and Type Field Description private OperandType
OpCode. _operandType
Methods in com.strobel.assembler.ir that return OperandType Modifier and Type Method Description OperandType
OpCode. getOperandType()
static OperandType
OperandType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OperandType[]
OperandType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.strobel.assembler.ir with parameters of type OperandType Modifier and Type Method Description private static boolean
Instruction. checkOperand(OperandType operandType, int value)
private static boolean
Instruction. checkOperand(OperandType operandType, DynamicCallSite callSite)
private static boolean
Instruction. checkOperand(OperandType operandType, FieldReference field)
private static boolean
Instruction. checkOperand(OperandType operandType, MethodReference method)
private static boolean
Instruction. checkOperand(OperandType operandType, TypeReference type)
Constructors in com.strobel.assembler.ir with parameters of type OperandType Constructor Description OpCode(int code, FlowControl flowControl, OpCodeType opCodeType, OperandType operandType, StackBehavior stackBehaviorPop, StackBehavior stackBehaviorPush)
-