Interface SequenceInformation
-
public interface SequenceInformationAccess to information about existing sequences.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default intgetIncrementSize()Deprecated.usegetIncrementValue()instead.java.lang.LonggetIncrementValue()Retrieve the extracted increment value defined for the sequence.java.lang.LonggetMaxValue()Retrieve the extracted maximum value defined for the sequence.java.lang.LonggetMinValue()Retrieve the extracted minimum value defined for the sequence.QualifiedSequenceNamegetSequenceName()The qualified sequence name.java.lang.LonggetStartValue()Retrieve the extracted start value defined for the sequence.
-
-
-
Method Detail
-
getSequenceName
QualifiedSequenceName getSequenceName()
The qualified sequence name.- Returns:
- The sequence name
-
getIncrementSize
@Deprecated default int getIncrementSize()
Deprecated.usegetIncrementValue()instead.Retrieve the extracted increment-size defined for the sequence.- Returns:
- The extracted increment size; use a negative number to indicate the increment could not be extracted.
-
getStartValue
java.lang.Long getStartValue()
Retrieve the extracted start value defined for the sequence.- Returns:
- The extracted start value or null id the value could not be extracted.
-
getMinValue
java.lang.Long getMinValue()
Retrieve the extracted minimum value defined for the sequence.- Returns:
- The extracted minimum value or null id the value could not be extracted.
-
getMaxValue
java.lang.Long getMaxValue()
Retrieve the extracted maximum value defined for the sequence.- Returns:
- The extracted maximum value or null id the value could not be extracted.
-
getIncrementValue
java.lang.Long getIncrementValue()
Retrieve the extracted increment value defined for the sequence.- Returns:
- The extracted increment value; use a negative number to indicate the increment could not be extracted.
-
-