-
- 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 @NotNull Statementelse_(Collection<? extends Statement> statements)Add anELSEclause to theIFstatement.@NotNull Statementelse_(Statement... statements)Add anELSEclause to theIFstatement.@NotNull IfThenStepelsif(Condition condition)Add anELSIFclause to theIFstatement.
-
-
-
Method Detail
-
elsif
@NotNull @Support({AURORA_POSTGRES,DB2,FIREBIRD,H2,HANA,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull IfThenStep elsif(Condition condition)
Add anELSIFclause to theIFstatement.
-
else_
@NotNull @Support({AURORA_POSTGRES,DB2,FIREBIRD,H2,HANA,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull Statement else_(Statement... statements)
Add anELSEclause to theIFstatement.
-
else_
@NotNull @Support({AURORA_POSTGRES,DB2,FIREBIRD,H2,HANA,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull Statement else_(Collection<? extends Statement> statements)
Add anELSEclause to theIFstatement.
-
-