Uses of Interface
java.lang.classfile.instruction.SwitchCase
Package
Description
Provides classfile parsing, generation, and transformation library.
Provides interfaces describing code instructions for the
java.lang.classfile
PREVIEW library.-
Uses of SwitchCasePREVIEW in java.lang.classfilePREVIEW
Modifier and TypeMethodDescriptiondefault CodeBuilderPREVIEW
CodeBuilder.lookupswitch
(LabelPREVIEW defaultTarget, List<SwitchCasePREVIEW> cases) Generate an instruction to access a jump table by key match and jumpdefault CodeBuilderPREVIEW
CodeBuilder.tableswitch
(int low, int high, LabelPREVIEW defaultTarget, List<SwitchCasePREVIEW> cases) Generate an instruction to access a jump table by index and jumpdefault CodeBuilderPREVIEW
CodeBuilder.tableswitch
(LabelPREVIEW defaultTarget, List<SwitchCasePREVIEW> cases) Generate an instruction to access a jump table by index and jump -
Uses of SwitchCasePREVIEW in java.lang.classfile.instructionPREVIEW
Modifier and TypeMethodDescriptionLookupSwitchInstruction.cases()
Returns the cases of the switch.TableSwitchInstruction.cases()
Returns the cases of the switch.