liquibase.statement.core
Class CreateIndexStatement

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

public class CreateIndexStatement
extends AbstractSqlStatement


Constructor Summary
CreateIndexStatement(String indexName, String tableCatalogName, String tableSchemaName, String tableName, Boolean isUnique, String associatedWith, String... columns)
           
 
Method Summary
 String getAssociatedWith()
           
 String[] getColumns()
           
 String getIndexName()
           
 String getTableCatalogName()
           
 String getTableName()
           
 String getTableSchemaName()
           
 String getTablespace()
           
 Boolean isUnique()
           
 void setAssociatedWith(String associatedWith)
           
 CreateIndexStatement setTablespace(String tablespace)
           
 
Methods inherited from class liquibase.statement.AbstractSqlStatement
skipOnUnsupported
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CreateIndexStatement

public CreateIndexStatement(String indexName,
                            String tableCatalogName,
                            String tableSchemaName,
                            String tableName,
                            Boolean isUnique,
                            String associatedWith,
                            String... columns)
Method Detail

getTableCatalogName

public String getTableCatalogName()

getTableSchemaName

public String getTableSchemaName()

getIndexName

public String getIndexName()

getTableName

public String getTableName()

getColumns

public String[] getColumns()

getTablespace

public String getTablespace()

setTablespace

public CreateIndexStatement setTablespace(String tablespace)

isUnique

public Boolean isUnique()

getAssociatedWith

public String getAssociatedWith()

setAssociatedWith

public void setAssociatedWith(String associatedWith)


Copyright © 2013 Liquibase.org. All Rights Reserved.