- All Superinterfaces:
Definition,TypedElementDefinition<SchemaDefinition>
- All Known Implementing Classes:
DefaultSequenceDefinition
An interface defining a sequence
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptiongetCache()Get the number of sequence values to cache for this sequence ornull, if no such value is specified.booleangetCycle()Get the increment for this sequence ornull, if no such value is specified.Get the maximum value for this sequence ornull, if no such value is specified.Get the minimum value for this sequence ornull, if no such value is specified.Get the start value for this sequence ornull, if no such value is specified.Methods inherited from interface org.jooq.meta.Definition
getCatalog, getComment, getDatabase, getDefinitionPath, getInputName, getName, getOutputName, getOverload, getPackage, getQualifiedInputName, getQualifiedInputNamePart, getQualifiedName, getQualifiedNamePart, getQualifiedOutputName, getQualifiedOutputNamePart, getSchema, getSource, isSyntheticMethods inherited from interface org.jooq.meta.TypedElementDefinition
getContainer, getDefinedType, getDomain, getType, getType
-
Method Details
-
getStartWith
Number getStartWith()Get the start value for this sequence ornull, if no such value is specified. -
getIncrementBy
Number getIncrementBy()Get the increment for this sequence ornull, if no such value is specified. -
getMinvalue
Number getMinvalue()Get the minimum value for this sequence ornull, if no such value is specified. -
getMaxvalue
Number getMaxvalue()Get the maximum value for this sequence ornull, if no such value is specified. -
getCycle
boolean getCycle() -
getCache
Number getCache()Get the number of sequence values to cache for this sequence ornull, if no such value is specified.
-