org.objectweb.asm.tree
public class LookupSwitchInsnNode extends AbstractInsnNode
Field Summary | |
---|---|
LabelNode | dflt
Beginning of the default handler block. |
List | keys
The values of the keys. |
List | labels
Beginnings of the handler blocks. |
Constructor Summary | |
---|---|
LookupSwitchInsnNode(LabelNode dflt, int[] keys, LabelNode[] labels)
Constructs a new LookupSwitchInsnNode.
|
Method Summary | |
---|---|
void | accept(MethodVisitor mv) |
AbstractInsnNode | clone(Map labels) |
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.