Interface SequenceInformation
-
- All Known Implementing Classes:
SequenceInformationImpl
public interface SequenceInformationAccess to information about existing sequences.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumbergetIncrementValue()Retrieve the extracted increment value defined for the sequence.NumbergetMaxValue()Retrieve the extracted maximum value defined for the sequence.NumbergetMinValue()Retrieve the extracted minimum value defined for the sequence.QualifiedSequenceNamegetSequenceName()The qualified sequence name.NumbergetStartValue()Retrieve the extracted start value defined for the sequence.
-
-
-
Method Detail
-
getSequenceName
QualifiedSequenceName getSequenceName()
The qualified sequence name.- Returns:
- The sequence name
-
getStartValue
Number 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
Number 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
Number 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
Number 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.
-
-