liquibase.statement.core
Class CreateSequenceStatement
java.lang.Object
liquibase.statement.AbstractSqlStatement
liquibase.statement.core.CreateSequenceStatement
- All Implemented Interfaces:
- SqlStatement
public class CreateSequenceStatement
- extends AbstractSqlStatement
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CreateSequenceStatement
public CreateSequenceStatement(String schemaName,
String sequenceName)
skipOnUnsupported
public boolean skipOnUnsupported()
- Specified by:
skipOnUnsupported
in interface SqlStatement
- Overrides:
skipOnUnsupported
in class AbstractSqlStatement
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)
Copyright © 2004-2011 Liquibase.org. All Rights Reserved.