org.jcoderz.phoenix.sqlparser
Class CreateSequenceStatement
java.lang.Object
org.jcoderz.phoenix.sqlparser.SqlStatement
org.jcoderz.phoenix.sqlparser.CreateSequenceStatement
public class CreateSequenceStatement
- extends SqlStatement
- Author:
- Albrecht Messner
CreateSequenceStatement
public CreateSequenceStatement(String name)
toString
public String toString()
-
- Overrides:
toString in class Object
getName
public String getName()
- Returns:
- Returns the name.
getCache
public long getCache()
- Returns:
- Returns the cache.
setCache
public void setCache(long cache)
- Parameters:
cache - The cache to set.
isCycle
public boolean isCycle()
- Returns:
- Returns the cycle.
setCycle
public void setCycle(boolean cycle)
- Parameters:
cycle - The cycle to set.
getIncrementBy
public long getIncrementBy()
- Returns:
- Returns the incrementBy.
setIncrementBy
public void setIncrementBy(long incrementBy)
- Parameters:
incrementBy - The incrementBy to set.
getMaxValue
public Long getMaxValue()
- Returns:
- Returns the maxValue.
setMaxValue
public void setMaxValue(Long maxValue)
- Parameters:
maxValue - The maxValue to set.
getMinValue
public Long getMinValue()
- Returns:
- Returns the minValue.
setMinValue
public void setMinValue(Long minValue)
- Parameters:
minValue - The minValue to set.
isNoMaxValue
public boolean isNoMaxValue()
- Returns:
- Returns the noMaxValue.
setNoMaxValue
public void setNoMaxValue(boolean noMaxValue)
- Parameters:
noMaxValue - The noMaxValue to set.
isNoMinValue
public boolean isNoMinValue()
- Returns:
- Returns the noMinValue.
setNoMinValue
public void setNoMinValue(boolean noMinValue)
- Parameters:
noMinValue - The noMinValue to set.
isOrder
public boolean isOrder()
- Returns:
- Returns the order.
setOrder
public void setOrder(boolean order)
- Parameters:
order - The order to set.
getStartWith
public Long getStartWith()
- Returns:
- Returns the startWith.
setStartWith
public void setStartWith(Long startWith)
- Parameters:
startWith - The startWith to set.
Copyright 2007 The jCoderZ Project.