Package xyz.cofe.trambda.bc
Class JumpInsn
- java.lang.Object
-
- xyz.cofe.trambda.bc.JumpInsn
-
- All Implemented Interfaces:
Serializable,ByteCode
public class JumpInsn extends Object implements ByteCode
the opcode of the type instruction to be visited. This opcode is either IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IF_ICMPEQ, IF_ICMPNE, IF_ICMPLT, IF_ICMPGE, IF_ICMPGT, IF_ICMPLE, IF_ACMPEQ, IF_ACMPNE, GOTO, JSR, IFNULL or IFNONNULL.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()intgetOpcode()voidsetLabel(String label)voidsetOpcode(int opcode)StringtoString()
-
-
-
Constructor Detail
-
JumpInsn
public JumpInsn()
-
JumpInsn
public JumpInsn(int op, String label)
-
-