Uses of Class
org.apache.calcite.linq4j.tree.SwitchCase
-
Packages that use SwitchCase Package Description org.apache.calcite.linq4j.tree Object model for Java expressions. -
-
Uses of SwitchCase in org.apache.calcite.linq4j.tree
Methods in org.apache.calcite.linq4j.tree that return SwitchCase Modifier and Type Method Description static SwitchCaseExpressions. switchCase(Expression expression, Iterable<? extends Expression> body)Creates a SwitchCase for use in a SwitchExpression.static SwitchCaseExpressions. switchCase(Expression expression, Expression... body)Creates a SwitchCase for use in a SwitchExpression, with varargs.Methods in org.apache.calcite.linq4j.tree with parameters of type SwitchCase Modifier and Type Method Description static SwitchStatementExpressions. switch_(Type type, Expression switchValue, Expression defaultBody, Method method, SwitchCase... cases)Creates a SwitchExpression that represents a switch statement that has a default case, using varargs.static SwitchStatementExpressions. switch_(Expression switchValue, Expression defaultBody, Method method, SwitchCase... cases)Creates a SwitchExpression that represents a switch statement that has a default case, using varargs.static SwitchStatementExpressions. switch_(Expression switchValue, Expression defaultBody, SwitchCase... cases)Creates a SwitchExpression that represents a switch statement that has a default case.static SwitchStatementExpressions. switch_(Expression switchValue, SwitchCase... cases)Creates a SwitchExpression that represents a switch statement without a default case.Method parameters in org.apache.calcite.linq4j.tree with type arguments of type SwitchCase Modifier and Type Method Description static SwitchStatementExpressions. switch_(Type type, Expression switchValue, Expression defaultBody, Method method, Iterable<? extends SwitchCase> cases)Creates a SwitchExpression that represents a switch statement that has a default case.static SwitchStatementExpressions. switch_(Expression switchValue, Expression defaultBody, Method method, Iterable<? extends SwitchCase> cases)Creates a SwitchExpression that represents a switch statement that has a default case.
-