Uses of Class
serp.bytecode.SwitchInstruction
-
Packages that use SwitchInstruction Package Description serp.bytecode Bytecode Manipuation -
-
Uses of SwitchInstruction in serp.bytecode
Methods in serp.bytecode that return SwitchInstruction Modifier and Type Method Description SwitchInstructionSwitchInstruction. addCase(int match, Instruction target)Add a case to this switch.abstract SwitchInstructionSwitchInstruction. addMatch(int match)SwitchInstructionSwitchInstruction. addTarget(Instruction target)Add a target to this switch.SwitchInstructionSwitchInstruction. setCases(int[] matches, Instruction[] targets)Set the match-jumppt pairs for this switch.SwitchInstructionSwitchInstruction. setDefaultOffset(int offset)Synonymous withJumpInstruction.setOffset(int).SwitchInstructionSwitchInstruction. setDefaultTarget(Instruction ins)Synonymous withJumpInstruction.setTarget(serp.bytecode.Instruction).SwitchInstructionSwitchInstruction. setMatches(int[] matches)SwitchInstructionSwitchInstruction. setTargets(Instruction[] targets)Set the jump points for this switch.
-