public interface AlterSequenceFlagsStep extends AlterSequenceFinalStep
ALTER SEQUENCE
statement where the flags of the
sequence are modified or cleared.
XYZ*Step
types directly from client code
It is usually not recommended to reference any XYZ*Step
types
directly from client code, or assign them to local variables. When writing
dynamic SQL, creating a statement's components dynamically, and passing them
to the DSL API statically is usually a better choice. See the manual's
section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
Drawbacks of referencing the XYZ*Step
types directly:
Modifier and Type | Method and Description |
---|---|
AlterSequenceFlagsStep |
cache(Field<? extends Number> value)
Add a
CACHE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
cache(Number value)
Add a
CACHE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
cycle()
Add a
CYCLE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
incrementBy(Field<? extends Number> value)
Add a
INCREMENT BY clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
incrementBy(Number value)
Add a
INCREMENT BY clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
maxvalue(Field<? extends Number> value)
Add a
MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
maxvalue(Number value)
Add a
MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
minvalue(Field<? extends Number> value)
Add a
MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
minvalue(Number value)
Add a
MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
noCache()
Add a
NO CACHE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
noCycle()
Add a
NO CYCLE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
noMaxvalue()
Add a
NO MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
noMinvalue()
Add a
NO MINVALUE clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
restart()
Restart the sequence at its initial value.
|
AlterSequenceFlagsStep |
restartWith(Field<? extends Number> value)
Restart the sequence at a given value.
|
AlterSequenceFlagsStep |
restartWith(Number value)
Restart the sequence at a given value.
|
AlterSequenceFlagsStep |
startWith(Field<? extends Number> value)
Add a
START WITH clause to the ALTER SEQUENCE
statement. |
AlterSequenceFlagsStep |
startWith(Number value)
Add a
START WITH clause to the ALTER SEQUENCE
statement. |
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, poolable, queryTimeout
attach, configuration, detach
@Support(value={HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep restart()
@Support(value={CUBRID,FIREBIRD,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep restartWith(Number value)
@Support(value={CUBRID,FIREBIRD,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep restartWith(Field<? extends Number> value)
@Support(value={MARIADB,POSTGRES}) AlterSequenceFlagsStep startWith(Number value)
START WITH
clause to the ALTER SEQUENCE
statement.@Support(value={MARIADB,POSTGRES}) AlterSequenceFlagsStep startWith(Field<? extends Number> value)
START WITH
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,FIREBIRD,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep incrementBy(Number value)
INCREMENT BY
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,FIREBIRD,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep incrementBy(Field<? extends Number> value)
INCREMENT BY
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep minvalue(Number value)
MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep minvalue(Field<? extends Number> value)
MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep noMinvalue()
NO MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep maxvalue(Number value)
MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep maxvalue(Field<? extends Number> value)
MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep noMaxvalue()
NO MINVALUE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep cycle()
CYCLE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,HSQLDB,MARIADB,POSTGRES}) AlterSequenceFlagsStep noCycle()
NO CYCLE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,MARIADB,POSTGRES}) AlterSequenceFlagsStep cache(Number value)
CACHE
clause to the ALTER SEQUENCE
statement.@Support(value={CUBRID,H2,MARIADB,POSTGRES}) AlterSequenceFlagsStep cache(Field<? extends Number> value)
CACHE
clause to the ALTER SEQUENCE
statement.Copyright © 2020. All rights reserved.