Package liquibase.statement.core
Class CreateSequenceStatement
- java.lang.Object
-
- liquibase.statement.AbstractSqlStatement
-
- liquibase.statement.core.CreateSequenceStatement
-
- All Implemented Interfaces:
SqlStatement
public class CreateSequenceStatement extends AbstractSqlStatement
-
-
Field Summary
-
Fields inherited from interface liquibase.statement.SqlStatement
EMPTY_SQL_STATEMENT
-
-
Constructor Summary
Constructors Constructor Description CreateSequenceStatement(String catalogName, String schemaName, String sequenceName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetCacheSize()StringgetCatalogName()BooleangetCycle()StringgetDataType()BigIntegergetIncrementBy()BigIntegergetMaxValue()BigIntegergetMinValue()BooleangetOrdered()StringgetSchemaName()StringgetSequenceName()BigIntegergetStartValue()CreateSequenceStatementsetCacheSize(BigInteger cacheSize)voidsetCatalogName(String catalogName)CreateSequenceStatementsetCycle(Boolean cycle)CreateSequenceStatementsetDataType(String dataType)CreateSequenceStatementsetIncrementBy(BigInteger incrementBy)CreateSequenceStatementsetMaxValue(BigInteger maxValue)CreateSequenceStatementsetMinValue(BigInteger minValue)CreateSequenceStatementsetOrdered(Boolean ordered)CreateSequenceStatementsetStartValue(BigInteger startValue)booleanskipOnUnsupported()-
Methods inherited from class liquibase.statement.AbstractSqlStatement
continueOnError, setContinueOnError
-
-
-
-
Method Detail
-
skipOnUnsupported
public boolean skipOnUnsupported()
- Specified by:
skipOnUnsupportedin interfaceSqlStatement- Overrides:
skipOnUnsupportedin classAbstractSqlStatement
-
getCatalogName
public String getCatalogName()
-
setCatalogName
public void setCatalogName(String catalogName)
-
getSchemaName
public String getSchemaName()
-
getSequenceName
public String getSequenceName()
-
getStartValue
public BigInteger getStartValue()
-
setStartValue
public CreateSequenceStatement setStartValue(BigInteger startValue)
-
getIncrementBy
public BigInteger getIncrementBy()
-
setIncrementBy
public CreateSequenceStatement setIncrementBy(BigInteger incrementBy)
-
getMaxValue
public BigInteger getMaxValue()
-
setMaxValue
public CreateSequenceStatement setMaxValue(BigInteger maxValue)
-
getMinValue
public BigInteger getMinValue()
-
setMinValue
public CreateSequenceStatement setMinValue(BigInteger minValue)
-
getOrdered
public Boolean getOrdered()
-
setOrdered
public CreateSequenceStatement setOrdered(Boolean ordered)
-
getCycle
public Boolean getCycle()
-
setCycle
public CreateSequenceStatement setCycle(Boolean cycle)
-
getCacheSize
public BigInteger getCacheSize()
-
setCacheSize
public CreateSequenceStatement setCacheSize(BigInteger cacheSize)
-
getDataType
public String getDataType()
-
setDataType
public CreateSequenceStatement setDataType(String dataType)
-
-