Uses of Class
org.apache.calcite.linq4j.tree.ConditionalStatement
-
Packages that use ConditionalStatement Package Description org.apache.calcite.linq4j.tree Object model for Java expressions. -
-
Uses of ConditionalStatement in org.apache.calcite.linq4j.tree
Methods in org.apache.calcite.linq4j.tree that return ConditionalStatement Modifier and Type Method Description static ConditionalStatementExpressions. ifThen(Expression test, Node ifTrue)Creates a ConditionalExpression that represents a conditional block with an if statement.static ConditionalStatementExpressions. ifThenElse(Iterable<? extends Node> nodes)Creates a ConditionalExpression that represents a conditional block with if and else statements:if (test) stmt1 [ else if (test2) stmt2 ]...static ConditionalStatementExpressions. ifThenElse(Expression test, Node... nodes)Creates a ConditionalExpression that represents a conditional block with if and else statements:if (test) stmt1 [ else if (test2) stmt2 ]...static ConditionalStatementExpressions. ifThenElse(Expression test, Node ifTrue, Node ifFalse)Creates a ConditionalExpression that represents a conditional block with if and else statements.Methods in org.apache.calcite.linq4j.tree with parameters of type ConditionalStatement Modifier and Type Method Description ShuttleShuttle. preVisit(ConditionalStatement conditionalStatement)StatementOptimizeShuttle. visit(ConditionalStatement conditionalStatement, List<Node> list)StatementShuttle. visit(ConditionalStatement conditionalStatement, List<Node> list)RVisitor. visit(ConditionalStatement conditionalStatement)RVisitorImpl. visit(ConditionalStatement conditionalStatement)
-