@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.cache(Number value) | 
 Add a CACHE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.cache(Field<? extends Number> value) | 
 Add a CACHE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.cycle() | 
 Add a CYCLE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.incrementBy(Number value) | 
 Add a INCREMENT BY clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.incrementBy(Field<? extends Number> value) | 
 Add a INCREMENT BY clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.maxvalue(Number value) | 
 Add a MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.maxvalue(Field<? extends Number> value) | 
 Add a MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.minvalue(Number value) | 
 Add a MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.minvalue(Field<? extends Number> value) | 
 Add a MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.noCache() | 
 Add a NO CACHE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.noCycle() | 
 Add a NO CYCLE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.noMaxvalue() | 
 Add a NO MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.noMinvalue() | 
 Add a NO MINVALUE clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.restart() | 
 Restart the sequence at its initial value. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.restartWith(Number value) | 
 Restart the sequence at a given value. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.restartWith(Field<? extends Number> value) | 
 Restart the sequence at a given value. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.startWith(Number value) | 
 Add a START WITH clause to the ALTER SEQUENCE
 statement. 
 | 
@NotNull AlterSequenceFlagsStep | 
AlterSequenceFlagsStep.startWith(Field<? extends Number> value) | 
 Add a START WITH clause to the ALTER SEQUENCE
 statement. 
 |