IntInsnNodepublic class IntInsnNode extends AbstractInsnNode A node that represents an instruction with a single int operand. |
Fields Summary |
---|
public int | operandThe operand of this instruction. |
Constructors Summary |
---|
public IntInsnNode(int opcode, int operand)Constructs a new {@link IntInsnNode IntInsnNode} object.
super(opcode);
this.operand = operand;
|
|