This package contains jOOQ's public API.
-
interface
A step in the construction of the CREATE SEQUENCE
statement.
CreateSequenceAsStep.as(Class<T> dataType)
Add the AS
clause to the CREATE SEQUENCE
statement.
Add the AS
clause to the CREATE SEQUENCE
statement.
Add the CACHE
clause to the CREATE SEQUENCE
statement.
CreateSequenceFlagsStep.cache(T cache)
Add the CACHE
clause to the CREATE SEQUENCE
statement.
CreateSequenceFlagsStep.cycle()
Add the CYCLE
clause to the CREATE SEQUENCE
statement.
Add the INCREMENT BY
clause to the CREATE SEQUENCE
statement.
Add the INCREMENT BY
clause to the CREATE SEQUENCE
statement.
Add the MAXVALUE
clause to the CREATE SEQUENCE
statement.
Add the MAXVALUE
clause to the CREATE SEQUENCE
statement.
Add the MINVALUE
clause to the CREATE SEQUENCE
statement.
Add the MINVALUE
clause to the CREATE SEQUENCE
statement.
Add the NO CACHE
clause to the CREATE SEQUENCE
statement.
Add the NO CYCLE
clause to the CREATE SEQUENCE
statement.
Add the NO MAXVALUE
clause to the CREATE SEQUENCE
statement.
Add the NO MINVALUE
clause to the CREATE SEQUENCE
statement.
Add the START WITH
clause to the CREATE SEQUENCE
statement.
Add the START WITH
clause to the CREATE SEQUENCE
statement.