See: Description
Interface | Description |
---|---|
DataFieldMaxValueIncrementer |
Interface that defines contract of incrementing any data store field's
maximum value.
|
Class | Description |
---|---|
AbstractColumnMaxValueIncrementer |
Abstract base class for
DataFieldMaxValueIncrementer implementations that use
a column in a custom sequence table. |
AbstractDataFieldMaxValueIncrementer |
Base implementation of
DataFieldMaxValueIncrementer that delegates
to a single AbstractDataFieldMaxValueIncrementer.getNextKey() template method that returns a long . |
AbstractIdentityColumnMaxValueIncrementer |
Abstract base class for
DataFieldMaxValueIncrementer implementations
which are based on identity columns in a sequence-like table. |
AbstractSequenceMaxValueIncrementer |
Abstract base class for
DataFieldMaxValueIncrementer implementations that use
a database sequence. |
Db2LuwMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given sequence on DB2 LUW (for Linux, Unix and Windows). |
Db2MainframeMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given sequence on DB2 for the mainframe (z/OS, DB2/390, DB2/400). |
DB2MainframeSequenceMaxValueIncrementer | Deprecated
in favor of the differently named
Db2MainframeMaxValueIncrementer |
DB2SequenceMaxValueIncrementer | Deprecated
in favor of the specifically named
Db2LuwMaxValueIncrementer |
DerbyMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given Derby table
with the equivalent of an auto-increment column. |
H2SequenceMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given H2 sequence. |
HanaSequenceMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given SAP HANA sequence. |
HsqlMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given HSQL table
with the equivalent of an auto-increment column. |
HsqlSequenceMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given HSQL sequence. |
MySQLMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given MySQL table
with the equivalent of an auto-increment column. |
OracleSequenceMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given Oracle sequence. |
PostgreSQLSequenceMaxValueIncrementer | Deprecated
in favor of the differently named
PostgresSequenceMaxValueIncrementer |
PostgresSequenceMaxValueIncrementer |
DataFieldMaxValueIncrementer that retrieves the next value
of a given PostgreSQL sequence. |
SqlServerMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given SQL Server table
with the equivalent of an auto-increment column. |
SybaseAnywhereMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given Sybase table
with the equivalent of an auto-increment column. |
SybaseMaxValueIncrementer |
DataFieldMaxValueIncrementer that increments the maximum value of a given Sybase table
with the equivalent of an auto-increment column. |
Can be used independently, for example in custom JDBC access code.