liquibase.statement.core
Class AddAutoIncrementStatement

java.lang.Object
  extended by liquibase.statement.AbstractSqlStatement
      extended by liquibase.statement.core.AddAutoIncrementStatement
All Implemented Interfaces:
SqlStatement

public class AddAutoIncrementStatement
extends AbstractSqlStatement


Constructor Summary
AddAutoIncrementStatement(String catalogName, String schemaName, String tableName, String columnName, String columnDataType, BigInteger startWith, BigInteger incrementBy)
           
 
Method Summary
 String getCatalogName()
           
 String getColumnDataType()
           
 String getColumnName()
           
 BigInteger getIncrementBy()
           
 String getSchemaName()
           
 BigInteger getStartWith()
           
 String getTableName()
           
 
Methods inherited from class liquibase.statement.AbstractSqlStatement
continueOnError, setContinueOnError, skipOnUnsupported
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AddAutoIncrementStatement

public AddAutoIncrementStatement(String catalogName,
                                 String schemaName,
                                 String tableName,
                                 String columnName,
                                 String columnDataType,
                                 BigInteger startWith,
                                 BigInteger incrementBy)
Method Detail

getCatalogName

public String getCatalogName()

getSchemaName

public String getSchemaName()

getTableName

public String getTableName()

getColumnName

public String getColumnName()

getColumnDataType

public String getColumnDataType()

getStartWith

public BigInteger getStartWith()

getIncrementBy

public BigInteger getIncrementBy()


Copyright © 2016 Liquibase.org. All rights reserved.