Interface SQLAlterStatement.Operation
- All Known Implementing Classes:
SQLAlterStatement.SQLAlterStatementBuilder
- Enclosing class:
- SQLAlterStatement
public static interface SQLAlterStatement.Operation
The
operation
part of building a SQLAlterStatement
-
Method Details
-
add
Sets theoperation
to add a column- Returns:
- this, to continue building
-
modify
SQLAlterStatement.ColumnDef modify()Sets theoperation
to modify a column- Returns:
- this, to continue building
-
drop
SQLAlterStatement.ColumnName drop()Sets theoperation
to drop a column- Returns:
- this, to continue building
-