Id
Table of Contents
Classes
- AbstractIdGenerator
- AssignedGenerator
- Special generator for application-assigned identifiers (doesn't really generate anything).
- BigIntegerIdentityGenerator
- Id generator that obtains IDs from special "identity" columns. These are columns
that automatically get a database-generated, auto-incremented identifier on INSERT.
- IdentityGenerator
- Id generator that obtains IDs from special "identity" columns. These are columns
that automatically get a database-generated, auto-incremented identifier on INSERT.
- SequenceGenerator
- Represents an ID generator that uses a database sequence.
- TableGenerator
- Id generator that uses a single-row database table and a hi/lo algorithm.
- UuidGenerator
- Represents an ID generator that uses the database UUID expression