类 SequenceInformationImpl
- java.lang.Object
-
- org.hibernate.tool.schema.extract.internal.SequenceInformationImpl
-
- 所有已实现的接口:
SequenceInformation
public class SequenceInformationImpl extends Object implements SequenceInformation
For now we only collect sequence name. If all databases support it, would really like to see INCREMENT here as well.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 SequenceInformationImpl(QualifiedSequenceName sequenceName, Long startValue, Long minValue, Long maxValue, Long incrementValue)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 LonggetIncrementValue()Retrieve the extracted increment value defined for the sequence.LonggetMaxValue()Retrieve the extracted maximum value defined for the sequence.LonggetMinValue()Retrieve the extracted minimum value defined for the sequence.QualifiedSequenceNamegetSequenceName()The qualified sequence name.LonggetStartValue()Retrieve the extracted start value defined for the sequence.-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.tool.schema.extract.spi.SequenceInformation
getIncrementSize
-
-
-
-
构造器详细资料
-
SequenceInformationImpl
public SequenceInformationImpl(QualifiedSequenceName sequenceName, Long startValue, Long minValue, Long maxValue, Long incrementValue)
-
-
方法详细资料
-
getSequenceName
public QualifiedSequenceName getSequenceName()
从接口复制的说明:SequenceInformationThe qualified sequence name.- 指定者:
getSequenceName在接口中SequenceInformation- 返回:
- The sequence name
-
getStartValue
public Long getStartValue()
从接口复制的说明:SequenceInformationRetrieve the extracted start value defined for the sequence.- 指定者:
getStartValue在接口中SequenceInformation- 返回:
- The extracted start value or null id the value could not be extracted.
-
getMinValue
public Long getMinValue()
从接口复制的说明:SequenceInformationRetrieve the extracted minimum value defined for the sequence.- 指定者:
getMinValue在接口中SequenceInformation- 返回:
- The extracted minimum value or null id the value could not be extracted.
-
getMaxValue
public Long getMaxValue()
从接口复制的说明:SequenceInformationRetrieve the extracted maximum value defined for the sequence.- 指定者:
getMaxValue在接口中SequenceInformation- 返回:
- The extracted maximum value or null id the value could not be extracted.
-
getIncrementValue
public Long getIncrementValue()
从接口复制的说明:SequenceInformationRetrieve the extracted increment value defined for the sequence.- 指定者:
getIncrementValue在接口中SequenceInformation- 返回:
- The extracted increment value; use a negative number to indicate the increment could not be extracted.
-
-