public class TableSwitchInsnNode extends AbstractInsnNode
| Modifier and Type | Field and Description |
|---|---|
Label |
dflt
Beginning of the default handler block.
|
java.util.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.
|
getOpcodepublic int min
public int max
public Label dflt
public final java.util.List labels
Label objects.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)
AbstractInsnNodeaccept in class AbstractInsnNodecv - a code visitor.