Uses of Interface
io.quarkus.gizmo2.creator.SwitchCreator
Packages that use SwitchCreator
-
Uses of SwitchCreator in io.quarkus.gizmo2.creator
Methods in io.quarkus.gizmo2.creator with parameters of type SwitchCreatorModifier and TypeMethodDescriptiondefault voidBlockCreator.gotoCase(SwitchCreator switch_, int case_) Jump to a specific case in the given enclosingswitch.voidBlockCreator.gotoCase(SwitchCreator switch_, Const case_) Jump to a specific case in the given enclosingswitch.default voidBlockCreator.gotoCase(SwitchCreator switch_, Class<?> case_) Jump to a specific case in the given enclosingswitch.default voidBlockCreator.gotoCase(SwitchCreator switch_, Enum<?> case_) Jump to a specific case in the given enclosingswitch.default voidBlockCreator.gotoCase(SwitchCreator switch_, String case_) Jump to a specific case in the given enclosingswitch.voidBlockCreator.gotoDefault(SwitchCreator switch_) Jump to the default case in the given enclosingswitch.Method parameters in io.quarkus.gizmo2.creator with type arguments of type SwitchCreatorModifier and TypeMethodDescriptiondefault voidBlockCreator.switch_(Expr val, Consumer<SwitchCreator> builder) Construct aswitchstatement.default ExprBlockCreator.switch_(Class<?> outputType, Expr val, Consumer<SwitchCreator> builder) Construct aswitchexpression.BlockCreator.switch_(ClassDesc outputType, Expr val, Consumer<SwitchCreator> builder) Construct aswitchexpression.default voidBlockCreator.switchEnum(Expr val, Consumer<SwitchCreator> builder) Construct aswitchstatement forenumconstants.default ExprBlockCreator.switchEnum(Class<?> outputType, Expr val, Consumer<SwitchCreator> builder) Construct aswitchexpression forenumconstants.BlockCreator.switchEnum(ClassDesc outputType, Expr val, Consumer<SwitchCreator> builder) Construct aswitchexpression forenumconstants.