Class SQLAlterSequenceStatement

java.lang.Object
com.alibaba.druid.sql.ast.SQLObjectImpl
com.alibaba.druid.sql.ast.SQLStatementImpl
com.alibaba.druid.sql.ast.statement.SQLAlterSequenceStatement
All Implemented Interfaces:
SQLDbTypedObject, SQLObject, SQLStatement, SQLAlterStatement

public class SQLAlterSequenceStatement extends SQLStatementImpl implements SQLAlterStatement
  • Constructor Details

    • SQLAlterSequenceStatement

      public SQLAlterSequenceStatement()
  • Method Details

    • accept0

      public void accept0(SQLASTVisitor visitor)
      Overrides:
      accept0 in class SQLStatementImpl
    • getChildren

      public List<SQLObject> getChildren()
      Specified by:
      getChildren in interface SQLStatement
      Overrides:
      getChildren in class SQLStatementImpl
    • getName

      public SQLName getName()
    • setName

      public void setName(SQLName name)
    • getStartWith

      public SQLExpr getStartWith()
    • setStartWith

      public void setStartWith(SQLExpr startWith)
    • getIncrementBy

      public SQLExpr getIncrementBy()
    • setIncrementBy

      public void setIncrementBy(SQLExpr incrementBy)
    • getMaxValue

      public SQLExpr getMaxValue()
    • setMaxValue

      public void setMaxValue(SQLExpr maxValue)
    • getCycle

      public Boolean getCycle()
    • setCycle

      public void setCycle(Boolean cycle)
    • getCache

      public Boolean getCache()
    • setCache

      public void setCache(Boolean cache)
    • getWithCache

      public Boolean getWithCache()
    • setWithCache

      public void setWithCache(Boolean withCache)
    • getOrder

      public Boolean getOrder()
    • setOrder

      public void setOrder(Boolean order)
    • getMinValue

      public SQLExpr getMinValue()
    • setMinValue

      public void setMinValue(SQLExpr minValue)
    • isNoMaxValue

      public boolean isNoMaxValue()
    • setNoMaxValue

      public void setNoMaxValue(boolean noMaxValue)
    • isNoMinValue

      public boolean isNoMinValue()
    • setNoMinValue

      public void setNoMinValue(boolean noMinValue)
    • getSchema

      public String getSchema()
    • getCacheValue

      public SQLExpr getCacheValue()
    • setCacheValue

      public void setCacheValue(SQLExpr cacheValue)
    • isChangeToSimple

      public boolean isChangeToSimple()
    • setChangeToSimple

      public void setChangeToSimple(boolean changeToSimple)
    • isChangeToGroup

      public boolean isChangeToGroup()
    • setChangeToGroup

      public void setChangeToGroup(boolean changeToGroup)
    • isChangeToTime

      public boolean isChangeToTime()
    • setChangeToTime

      public void setChangeToTime(boolean changeToTime)
    • isRestart

      public boolean isRestart()
    • setRestart

      public void setRestart(boolean restart)
    • getRestartWith

      public SQLExpr getRestartWith()
    • setRestartWith

      public void setRestartWith(SQLExpr x)