-
@Pro public interface IfThenStep
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 IfElseStep
then(Collection<? extends Statement> statements)
Add aTHEN
clause to theIF
statement.@NotNull IfElseStep
then(Statement... statements)
Add aTHEN
clause to theIF
statement.
-
-
-
Method Detail
-
then
@NotNull @Support({AURORA_POSTGRES,DB2,FIREBIRD,H2,HANA,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull IfElseStep then(Statement... statements)
Add aTHEN
clause to theIF
statement.
-
then
@NotNull @Support({AURORA_POSTGRES,DB2,FIREBIRD,H2,HANA,MARIADB,MYSQL,ORACLE,POSTGRES,SQLDATAWAREHOUSE,SQLSERVER}) @NotNull IfElseStep then(Collection<? extends Statement> statements)
Add aTHEN
clause to theIF
statement.
-
-