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