Class TABLESWITCH
java.lang.Object
org.apache.bcel.generic.Instruction
org.apache.bcel.generic.BranchInstruction
org.apache.bcel.generic.Select
org.apache.bcel.generic.TABLESWITCH
- All Implemented Interfaces:
Cloneable, InstructionTargeter, StackConsumer, StackProducer, VariableLengthInstruction
TABLESWITCH - Switch within given range of values, that is, low..high
- See Also:
-
Field Summary
Fields inherited from class Select
fixed_length, indices, match, match_length, padding, targetsFields inherited from class BranchInstruction
index, position, targetFields inherited from class Instruction
length, opcode -
Constructor Summary
ConstructorsConstructorDescriptionTABLESWITCH(int[] match, InstructionHandle[] targets, InstructionHandle defaultTarget) -
Method Summary
Modifier and TypeMethodDescriptionvoidCall corresponding visitor method(s).voiddump(DataOutputStream out) Dumps instruction as byte code to stream out.protected voidinitFromFile(ByteSequence bytes, boolean wide) Reads needed data (for example index) from file.Methods inherited from class Select
clone, containsTarget, getIndices, getMatchs, getTargets, setTarget, toString, updatePosition, updateTargetMethods inherited from class BranchInstruction
getIndex, getPosition, getTarget, getTargetOffset, getTargetOffset, setIndex, setPosition, setTargetMethods inherited from class Instruction
consumeStack, copy, equals, getComparator, getLength, getName, getOpcode, hashCode, isValidByte, isValidShort, produceStack, readInstruction, setComparator, toString, toStringMethods inherited from interface StackConsumer
consumeStackMethods inherited from interface StackProducer
produceStack
-
Constructor Details
-
TABLESWITCH
- Parameters:
match- sorted array of match values, match[0] must be low value, match[match_length - 1] high value.targets- where to branch for matched values.defaultTarget- default branch.
-
-
Method Details
-
accept
Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, that is, the most specific visitXXX() call comes last.- Specified by:
acceptin classInstruction- Parameters:
v- Visitor object.
-
dump
Dumps instruction as byte code to stream out.- Overrides:
dumpin classSelect- Parameters:
out- Output stream.- Throws:
IOException- Thrown when an I/O exception of some sort has occurred.
-
initFromFile
Reads needed data (for example index) from file.- Overrides:
initFromFilein classSelect- Parameters:
bytes- input stream.wide- wide prefix?- Throws:
IOException- may be thrown if the implementation needs to read data from the file- See Also:
-