org.objectweb.asm.tree
public class TableSwitchInsnNode extends AbstractInsnNode
| Field Summary | |
|---|---|
| LabelNode | 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. |
| Constructor Summary | |
|---|---|
| TableSwitchInsnNode(int min, int max, LabelNode dflt, LabelNode[] labels)
Constructs a new TableSwitchInsnNode.
| |
| Method Summary | |
|---|---|
| void | accept(MethodVisitor mv) |
| AbstractInsnNode | clone(Map labels) |
| int | getType() |
Parameters: 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.