Uses of Class
org.apache.bcel.generic.BranchInstruction
- 
Packages that use BranchInstruction Package Description org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions. - 
- 
Uses of BranchInstruction in org.apache.bcel.generic
Subclasses of BranchInstruction in org.apache.bcel.generic Modifier and Type Class Description classGOTOGOTO - Branch always (to relative offset, not absolute address)classGOTO_WGOTO_W - Branch always (to relative offset, not absolute address)classGotoInstructionSuper class for GOTOclassIF_ACMPEQIF_ACMPEQ - Branch if reference comparison succeedsclassIF_ACMPNEIF_ACMPNE - Branch if reference comparison doesn't succeedclassIF_ICMPEQIF_ICMPEQ - Branch if int comparison succeedsclassIF_ICMPGEIF_ICMPGE - Branch if int comparison succeedsclassIF_ICMPGTIF_ICMPGT - Branch if int comparison succeedsclassIF_ICMPLEIF_ICMPLE - Branch if int comparison succeedsclassIF_ICMPLTIF_ICMPLT - Branch if int comparison succeedsclassIF_ICMPNEIF_ICMPNE - Branch if int comparison doesn't succeedclassIFEQIFEQ - Branch if int comparison with zero succeedsclassIFGEIFGE - Branch if int comparison with zero succeedsclassIFGTIFGT - Branch if int comparison with zero succeedsclassIfInstructionSuper class for the IFxxx family of instructions.classIFLEIFLE - Branch if int comparison with zero succeedsclassIFLTIFLT - Branch if int comparison with zero succeedsclassIFNEIFNE - Branch if int comparison with zero succeedsclassIFNONNULLIFNONNULL - Branch if reference is not nullclassIFNULLIFNULL - Branch if reference is not nullclassJSRJSR - Jump to subroutineclassJSR_WJSR_W - Jump to subroutineclassJsrInstructionSuper class for JSR - Jump to subroutineclassLOOKUPSWITCHLOOKUPSWITCH - Switch with unordered set of valuesclassSelectSelect - Abstract super class for LOOKUPSWITCH and TABLESWITCH instructions.classTABLESWITCHTABLESWITCH - Switch within given range of values, i.e., low..highMethods in org.apache.bcel.generic that return BranchInstruction Modifier and Type Method Description static BranchInstructionInstructionFactory. createBranchInstruction(short opcode, InstructionHandle target)Create branch instruction by given opcode, except LOOKUPSWITCH and TABLESWITCH.Methods in org.apache.bcel.generic with parameters of type BranchInstruction Modifier and Type Method Description BranchHandleInstructionList. append(BranchInstruction i)Append a branch instruction to the end of this list.BranchHandleInstructionList. append(InstructionHandle ih, BranchInstruction i)Append an instruction after instruction (handle) ih contained in this list.BranchHandleInstructionList. insert(BranchInstruction i)Insert a branch instruction at start of this list.BranchHandleInstructionList. insert(InstructionHandle ih, BranchInstruction i)Insert an instruction before instruction (handle) ih contained in this list.voidEmptyVisitor. visitBranchInstruction(BranchInstruction obj)voidVisitor. visitBranchInstruction(BranchInstruction obj)Constructors in org.apache.bcel.generic with parameters of type BranchInstruction Constructor Description InstructionList(BranchInstruction i)Create instruction list containing one instruction. 
 -