接口 SequenceInformation
-
- 所有已知实现类:
SequenceInformationImpl
public interface SequenceInformationAccess to information about existing sequences.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 默认方法 已过时的方法 修饰符和类型 方法 说明 default intgetIncrementSize()已过时。usegetIncrementValue()instead.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.
-
-
-
方法详细资料
-
getSequenceName
QualifiedSequenceName getSequenceName()
The qualified sequence name.- 返回:
- The sequence name
-
getIncrementSize
@Deprecated default int getIncrementSize()
已过时。usegetIncrementValue()instead.Retrieve the extracted increment-size defined for the sequence.- 返回:
- The extracted increment size; use a negative number to indicate the increment could not be extracted.
-
getStartValue
Long getStartValue()
Retrieve the extracted start value defined for the sequence.- 返回:
- The extracted start value or null id the value could not be extracted.
-
getMinValue
Long getMinValue()
Retrieve the extracted minimum value defined for the sequence.- 返回:
- The extracted minimum value or null id the value could not be extracted.
-
getMaxValue
Long getMaxValue()
Retrieve the extracted maximum value defined for the sequence.- 返回:
- The extracted maximum value or null id the value could not be extracted.
-
getIncrementValue
Long getIncrementValue()
Retrieve the extracted increment value defined for the sequence.- 返回:
- The extracted increment value; use a negative number to indicate the increment could not be extracted.
-
-