- All Superinterfaces:
QueryPart
,Serializable
,Statement
An intermediate step in building a procedural
IF
statement.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@NotNull Statement
else_(Collection<? extends Statement> statements)
Add anELSE
clause to theIF
statement.@NotNull Statement
Add anELSE
clause to theIF
statement.@NotNull IfThenStep
Add anELSIF
clause to theIF
statement.
-
Method Details
-
elsif
@NotNull @Support({AURORA_POSTGRES,BIGQUERY,DB2,EXASOL,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull IfThenStep elsif(Condition condition)Add anELSIF
clause to theIF
statement. -
else_
@NotNull @Support({AURORA_POSTGRES,BIGQUERY,DB2,EXASOL,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull Statement else_(Statement... statements)Add anELSE
clause to theIF
statement. -
else_
@NotNull @Support({AURORA_POSTGRES,BIGQUERY,DB2,EXASOL,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull Statement else_(Collection<? extends Statement> statements)Add anELSE
clause to theIF
statement.
-