Package org.jooq
Interface IfElseStep
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Statement
else_(java.util.Collection<? extends Statement> statements)
Add anELSE
clause to theIF
statement.Statement
else_(Statement... statements)
Add anELSE
clause to theIF
statement.IfThenStep
elsif(Condition condition)
Add anELSIF
clause to theIF
statement.
-
-
-
Method Detail
-
elsif
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) IfThenStep elsif(Condition condition)
Add anELSIF
clause to theIF
statement.
-
else_
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) Statement else_(Statement... statements)
Add anELSE
clause to theIF
statement.
-
-