public class TableSwitchInsnNode extends AbstractInsnNode
Modifier and Type | Field and Description |
---|---|
Label |
dflt
Beginning of the default handler block.
|
List |
labels
Beginnings of the handler blocks.
|
int |
max
The maximum key value.
|
int |
min
The minimum key value.
|
opcode
Constructor and Description |
---|
TableSwitchInsnNode(int min,
int max,
Label dflt,
Label[] labels)
Constructs a new
TableSwitchInsnNode . |
Modifier and Type | Method and Description |
---|---|
void |
accept(CodeVisitor cv)
Makes the given code visitor visit this instruction.
|
getOpcode
public int min
public int max
public Label dflt
public TableSwitchInsnNode(int min, int max, Label dflt, Label[] labels)
TableSwitchInsnNode
.min
- the minimum key value.max
- the maximum key value.dflt
- beginning of the default handler block.labels
- beginnings of the handler blocks. labels[i] is the
beginning of the handler block for the min + i key.public void accept(CodeVisitor cv)
AbstractInsnNode
accept
in class AbstractInsnNode
cv
- a code visitor.