-
- All Superinterfaces:
QueryPart
,Serializable
,Statement
@Pro public interface IfElseStep extends Statement
An intermediate step in building a proceduralIF
statement.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Statement
else_(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.
-
else_
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) Statement else_(Collection<? extends Statement> statements)
Add anELSE
clause to theIF
statement.
-
-