public class CreateSequenceStatement extends AbstractSqlStatement
Constructor and Description |
---|
CreateSequenceStatement(String catalogName,
String schemaName,
String sequenceName) |
Modifier and Type | Method and Description |
---|---|
String |
getCatalogName() |
Boolean |
getCycle() |
BigInteger |
getIncrementBy() |
BigInteger |
getMaxValue() |
BigInteger |
getMinValue() |
Boolean |
getOrdered() |
String |
getSchemaName() |
String |
getSequenceName() |
BigInteger |
getStartValue() |
void |
setCatalogName(String catalogName) |
CreateSequenceStatement |
setCycle(Boolean cycle) |
CreateSequenceStatement |
setIncrementBy(BigInteger incrementBy) |
CreateSequenceStatement |
setMaxValue(BigInteger maxValue) |
CreateSequenceStatement |
setMinValue(BigInteger minValue) |
CreateSequenceStatement |
setOrdered(Boolean ordered) |
CreateSequenceStatement |
setStartValue(BigInteger startValue) |
boolean |
skipOnUnsupported() |
public boolean skipOnUnsupported()
skipOnUnsupported
in interface SqlStatement
skipOnUnsupported
in class AbstractSqlStatement
public String getCatalogName()
public void setCatalogName(String catalogName)
public String getSchemaName()
public String getSequenceName()
public BigInteger getStartValue()
public CreateSequenceStatement setStartValue(BigInteger startValue)
public BigInteger getIncrementBy()
public CreateSequenceStatement setIncrementBy(BigInteger incrementBy)
public BigInteger getMaxValue()
public CreateSequenceStatement setMaxValue(BigInteger maxValue)
public BigInteger getMinValue()
public CreateSequenceStatement setMinValue(BigInteger minValue)
public Boolean getOrdered()
public CreateSequenceStatement setOrdered(Boolean ordered)
public Boolean getCycle()
public CreateSequenceStatement setCycle(Boolean cycle)
Copyright © 2017 Liquibase.org. All rights reserved.