Uses of Class
org.h2.schema.Sequence.Cycle
-
Packages that use Sequence.Cycle Package Description org.h2.command.ddl Contains DDL (data definition language) and related SQL statements.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants). -
-
Uses of Sequence.Cycle in org.h2.command.ddl
Fields in org.h2.command.ddl declared as Sequence.Cycle Modifier and Type Field Description private Sequence.Cycle
SequenceOptions. cycle
Methods in org.h2.command.ddl that return Sequence.Cycle Modifier and Type Method Description Sequence.Cycle
SequenceOptions. getCycle()
Gets cycle option.Methods in org.h2.command.ddl with parameters of type Sequence.Cycle Modifier and Type Method Description void
SequenceOptions. setCycle(Sequence.Cycle cycle)
Sets cycle option. -
Uses of Sequence.Cycle in org.h2.schema
Fields in org.h2.schema declared as Sequence.Cycle Modifier and Type Field Description private Sequence.Cycle
Sequence. cycle
Methods in org.h2.schema that return Sequence.Cycle Modifier and Type Method Description Sequence.Cycle
Sequence. getCycle()
static Sequence.Cycle
Sequence.Cycle. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Sequence.Cycle[]
Sequence.Cycle. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.h2.schema with parameters of type Sequence.Cycle Modifier and Type Method Description void
Sequence. modify(java.lang.Long baseValue, java.lang.Long startValue, java.lang.Long minValue, java.lang.Long maxValue, java.lang.Long increment, Sequence.Cycle cycle, java.lang.Long cacheSize)
Allows the base value, start value, min value, max value, increment and cache size to be updated atomically, including atomic validation.
-