All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.AlterTableStep Maven / Gradle / Ivy

Go to download

A Java implementation of a KillBill Payment Plugin that uses Authorize.Net as a payment gateway

There is a newer version: 2.8.196
Show newest version
/**
 * Copyright (c) 2009-2015, Data Geekery GmbH (http://www.datageekery.com)
 * All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Other licenses:
 * -----------------------------------------------------------------------------
 * Commercial licenses for this work are available. These replace the above
 * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
 * database integrations.
 *
 * For more information, please visit: http://www.jooq.org/licenses
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */
package org.jooq;

// ...
// ...
import static org.jooq.SQLDialect.CUBRID;
// ...
import static org.jooq.SQLDialect.DERBY;
import static org.jooq.SQLDialect.FIREBIRD;
import static org.jooq.SQLDialect.H2;
// ...
import static org.jooq.SQLDialect.HSQLDB;
// ...
// ...
import static org.jooq.SQLDialect.MARIADB;
import static org.jooq.SQLDialect.MYSQL;
// ...
import static org.jooq.SQLDialect.POSTGRES;
// ...
// ...

import org.jooq.impl.DSL;


/**
 * The step in the ALTER TABLE where the action can be decided.
 *
 * @author Lukas Eder
 */
public interface AlterTableStep {

    /**
     * Add an ALTER COLUMN clause to the ALTER TABLE
     * statement.
     * 

* This is an alias for {@link #alterColumn(Field)}. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableAlterStep alter(Field field); /** * Add an ALTER COLUMN clause to the ALTER TABLE * statement. *

* This is an alias for {@link #alterColumn(String)} */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableAlterStep alter(String field); /** * Add an ALTER COLUMN clause to the ALTER TABLE * statement. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableAlterStep alterColumn(Field field); /** * Add an ALTER COLUMN clause to the ALTER TABLE * statement. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableAlterStep alterColumn(String field); /** * Add an ADD COLUMN clause to the ALTER TABLE * statement. *

* This is an alias for {@link #addColumn(Field, DataType)}. */ @Support AlterTableFinalStep add(Field field, DataType type); /** * Add an ADD COLUMN clause to the ALTER TABLE * statement. *

* This is an alias for {@link #addColumn(String, DataType)}. */ @Support AlterTableFinalStep add(String field, DataType type); /** * Add an ADD COLUMN clause to the ALTER TABLE * statement. */ @Support AlterTableFinalStep addColumn(Field field, DataType type); /** * Add an ADD CONSTRAINT clause to the ALTER TABLE * statement. */ @Support AlterTableFinalStep add(Constraint constraint); /** * Add an ADD COLUMN clause to the ALTER TABLE * statement. */ @Support AlterTableFinalStep addColumn(String field, DataType type); /** * Add an DROP COLUMN clause to the ALTER TABLE * statement. *

* This is an alias for {@link #dropColumn(Field)}. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableDropStep drop(Field field); /** * Add an DROP COLUMN clause to the ALTER TABLE * statement. *

* This is an alias for {@link #dropColumn(String)}. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableDropStep drop(String field); /** * Add an DROP COLUMN clause to the ALTER TABLE * statement. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableDropStep dropColumn(Field field); /** * Add an DROP COLUMN clause to the ALTER TABLE * statement. */ @Support({ CUBRID, DERBY, FIREBIRD, H2, HSQLDB, MARIADB, MYSQL, POSTGRES }) AlterTableDropStep dropColumn(String field); /** * Add a DROP CONSTRAINT clause to the ALTER TABLE * statement. */ @Support AlterTableFinalStep drop(Constraint constraint); /** * Add a DROP CONSTRAINT clause to the ALTER TABLE * statement. * * @see DSL#constraint(String) */ @Support AlterTableFinalStep dropConstraint(String constraint); }