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

liquibase.statement.core.AddAutoIncrementStatement Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.statement.core;

import java.math.BigInteger;

import liquibase.statement.AbstractSqlStatement;

public class AddAutoIncrementStatement extends AbstractSqlStatement {

    private String schemaName;
    private String tableName;
    private String columnName;
    private String columnDataType;
    private BigInteger startWith;
    private BigInteger incrementBy;
    
    public AddAutoIncrementStatement(
    		String schemaName,
    		String tableName,
    		String columnName,
    		String columnDataType,
    		BigInteger startWith,
    		BigInteger incrementBy) {
        this.schemaName = schemaName;
        this.tableName = tableName;
        this.columnName = columnName;
        this.columnDataType = columnDataType;
        this.startWith = startWith;
        this.incrementBy = incrementBy;
    }

    public String getSchemaName() {
        return schemaName;
    }

    public String getTableName() {
        return tableName;
    }

    public String getColumnName() {
        return columnName;
    }

    public String getColumnDataType() {
        return columnDataType;
    }
    
    public BigInteger getStartWith() {
    	return startWith;
    }
    
    public BigInteger getIncrementBy() {
    	return incrementBy;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy