-
- All Superinterfaces:
QueryPart,Serializable,Statement
@Pro public interface IfElseStep extends Statement
An intermediate step in building a proceduralIFstatement.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Statementelse_(Collection<? extends Statement> statements)Add anELSEclause to theIFstatement.Statementelse_(Statement... statements)Add anELSEclause to theIFstatement.IfThenStepelsif(Condition condition)Add anELSIFclause to theIFstatement.
-
-
-
Method Detail
-
elsif
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) IfThenStep elsif(Condition condition)
Add anELSIFclause to theIFstatement.
-
else_
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) Statement else_(Statement... statements)
Add anELSEclause to theIFstatement.
-
else_
@Support({AURORA_POSTGRES,DB2,H2,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) Statement else_(Collection<? extends Statement> statements)
Add anELSEclause to theIFstatement.
-
-