- All Superinterfaces:
- Attachable,- AttachableQueryPart,- CreateSequenceFinalStep,- DDLQuery,- Flow.Publisher<Integer>,- Publisher<Integer>,- org.reactivestreams.Publisher<Integer>,- Query,- QueryPart,- RowCountQuery,- Serializable,- Statement
- All Known Subinterfaces:
- CreateSequenceAsStep<T>
A step in the construction of the Referencing 
 
CREATE SEQUENCE statement.
 
Referencing 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:
 
- They're operating on mutable implementations (as of jOOQ 3.x)
- They're less composable and not easy to get right when dynamic SQL gets complex
- They're less readable
- They might have binary incompatible changes between minor releases
- 
Method SummaryModifier and TypeMethodDescription@NotNull CreateSequenceFlagsStep<T> Add theCACHEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theCACHEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> cycle()Add theCYCLEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> incrementBy(Field<T> incrementBy) Add theINCREMENT BYclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> incrementBy(T incrementBy) Add theINCREMENT BYclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theMAXVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theMAXVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theMINVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theMINVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> noCache()Add theNO CACHEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> noCycle()Add theNO CYCLEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theNO MAXVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theNO MINVALUEclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theSTART WITHclause to theCREATE SEQUENCEstatement.@NotNull CreateSequenceFlagsStep<T> Add theSTART WITHclause to theCREATE SEQUENCEstatement.Methods inherited from interface org.jooq.Attachableattach, configuration, detachMethods inherited from interface org.jooq.AttachableQueryPartgetBindValues, getParam, getParams, getSQL, getSQLMethods inherited from interface org.reactivestreams.PublishersubscribeMethods inherited from interface org.jooq.Querybind, bind, cancel, execute, executeAsync, executeAsync, isExecutable, keepStatement, poolable, queryTimeout
- 
Method Details- 
startWith@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD_3_0,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> startWith(T startWith) Add theSTART WITHclause to theCREATE SEQUENCEstatement.- Parameters:
- startWith- is wrapped as- DSL.val(Object).
 
- 
startWith@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD_3_0,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> startWith(Field<T> startWith) Add theSTART WITHclause to theCREATE SEQUENCEstatement.
- 
incrementBy@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD_3_0,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> incrementBy(T incrementBy) Add theINCREMENT BYclause to theCREATE SEQUENCEstatement.- Parameters:
- incrementBy- is wrapped as- DSL.val(Object).
 
- 
incrementBy@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD_3_0,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> incrementBy(Field<T> incrementBy) Add theINCREMENT BYclause to theCREATE SEQUENCEstatement.
- 
minvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> minvalue(T minvalue) Add theMINVALUEclause to theCREATE SEQUENCEstatement.- Parameters:
- minvalue- is wrapped as- DSL.val(Object).
 
- 
minvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> minvalue(Field<T> minvalue) Add theMINVALUEclause to theCREATE SEQUENCEstatement.
- 
noMinvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> noMinvalue()Add theNO MINVALUEclause to theCREATE SEQUENCEstatement.
- 
maxvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> maxvalue(T maxvalue) Add theMAXVALUEclause to theCREATE SEQUENCEstatement.- Parameters:
- maxvalue- is wrapped as- DSL.val(Object).
 
- 
maxvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> maxvalue(Field<T> maxvalue) Add theMAXVALUEclause to theCREATE SEQUENCEstatement.
- 
noMaxvalue@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> noMaxvalue()Add theNO MAXVALUEclause to theCREATE SEQUENCEstatement.
- 
cycle@Support({AURORA_POSTGRES,CUBRID,DB2,DERBY,DUCKDB,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> cycle()Add theCYCLEclause to theCREATE SEQUENCEstatement.
- 
noCycle@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> noCycle()Add theNO CYCLEclause to theCREATE SEQUENCEstatement.
- 
cache@Support({AURORA_POSTGRES,CUBRID,DB2,H2,HANA,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> cache(T cache) Add theCACHEclause to theCREATE SEQUENCEstatement.- Parameters:
- cache- is wrapped as- DSL.val(Object).
 
- 
cache@Support({AURORA_POSTGRES,CUBRID,DB2,H2,HANA,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> cache(Field<T> cache) Add theCACHEclause to theCREATE SEQUENCEstatement.
- 
noCache@Support({AURORA_POSTGRES,COCKROACHDB,CUBRID,DB2,DERBY,DUCKDB,FIREBIRD,H2,HANA,HSQLDB,INFORMIX,INGRES,MARIADB_10_3,ORACLE,POSTGRES,SNOWFLAKE,SQLSERVER2012,SYBASE,VERTICA,YUGABYTEDB}) @NotNull @CheckReturnValue @NotNull CreateSequenceFlagsStep<T> noCache()Add theNO CACHEclause to theCREATE SEQUENCEstatement.
 
-