org.objectweb.asm.tree
public class LookupSwitchInsnNode extends AbstractInsnNode
Field Summary | |
---|---|
Label | dflt
Beginning of the default handler block. |
List | keys
The values of the keys. |
List | labels
Beginnings of the handler blocks. |
Constructor Summary | |
---|---|
LookupSwitchInsnNode(Label dflt, int[] keys, Label[] labels)
Constructs a new {@link LookupSwitchInsnNode}.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv) |
int | getType() |
Parameters: dflt beginning of the default handler block. keys the values of the keys. labels beginnings of the handler blocks. labels[i] is the beginning of the handler block for the keys[i] key.