Uses of Interface
org.hibernate.id.Configurable
-
Packages that use Configurable Package Description org.hibernate.envers.enhanced org.hibernate.id org.hibernate.id.enhanced Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configurationorg.hibernate.id.factory.spi org.hibernate.id.uuid -
-
Uses of Configurable in org.hibernate.envers.enhanced
Classes in org.hibernate.envers.enhanced that implement Configurable Modifier and Type Class Description class
OrderedSequenceGenerator
Revision number generator has to produce values in ascending order (gaps may occur). -
Uses of Configurable in org.hibernate.id
Subinterfaces of Configurable in org.hibernate.id Modifier and Type Interface Description interface
BulkInsertionCapableIdentifierGenerator
Specialized contract forIdentifierGenerator
implementations capable of being used in conjunction with HQL insert statements.interface
IdentifierGenerator
The general contract between a class that generates unique identifiers and theSession
.interface
OptimizableGenerator
Commonality between sequence-based and table-based generatorsinterface
PersistentIdentifierGenerator
AnIdentifierGenerator
that requires creation of database objects.interface
PostInsertIdentifierGenerator
Classes in org.hibernate.id that implement Configurable Modifier and Type Class Description class
AbstractPostInsertGenerator
Basic implementation of thePostInsertIdentifierGenerator
contract.class
AbstractUUIDGenerator
The base class for identifier generators that use a UUID algorithm.class
Assigned
assignedclass
CompositeNestedGeneratedValueGenerator
For composite identifiers, defines a number of "nested" generations that need to happen to "fill" the identifier property(s).class
ForeignGenerator
foreignclass
GUIDGenerator
Deprecated.useUuidGenerator
class
IdentityGenerator
A generator for use with ANSI-SQL IDENTITY columns used as the primary key.class
IncrementGenerator
incrementclass
SelectGenerator
A generator that selects the just inserted row to determine the identifier value assigned by the database.class
UUIDGenerator
Deprecated.useUuidGenerator
andUuidGenerator
insteadclass
UUIDHexGenerator
uuid -
Uses of Configurable in org.hibernate.id.enhanced
Classes in org.hibernate.id.enhanced that implement Configurable Modifier and Type Class Description class
SequenceStyleGenerator
Generates identifier values based on a sequence-style database structure.class
TableGenerator
An enhanced version of table-based id generation. -
Uses of Configurable in org.hibernate.id.factory.spi
Subinterfaces of Configurable in org.hibernate.id.factory.spi Modifier and Type Interface Description interface
StandardGenerator
Marker interface for Hibernate-provided generator impls -
Uses of Configurable in org.hibernate.id.uuid
Classes in org.hibernate.id.uuid that implement Configurable Modifier and Type Class Description class
UuidGenerator
UUID-based IdentifierGenerator
-