liquibase.statement.core
Class CreateSequenceStatement

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

public class CreateSequenceStatement
extends AbstractSqlStatement


Constructor Summary
CreateSequenceStatement(String schemaName, String sequenceName)
           
 
Method Summary
 Boolean getCycle()
           
 BigInteger getIncrementBy()
           
 BigInteger getMaxValue()
           
 BigInteger getMinValue()
           
 Boolean getOrdered()
           
 String getSchemaName()
           
 String getSequenceName()
           
 BigInteger getStartValue()
           
 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()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CreateSequenceStatement

public CreateSequenceStatement(String schemaName,
                               String sequenceName)
Method Detail

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.