Uses of Interface
org.hibernate.id.factory.spi.StandardGenerator
-
Packages that use StandardGenerator Package Description org.hibernate.envers.enhanced org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.id.enhanced Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified configuration. -
-
Uses of StandardGenerator in org.hibernate.envers.enhanced
Classes in org.hibernate.envers.enhanced that implement StandardGenerator Modifier and Type Class Description class
OrderedSequenceGenerator
Revision number generator has to produce values in ascending order (gaps may occur). -
Uses of StandardGenerator in org.hibernate.id
Subinterfaces of StandardGenerator in org.hibernate.id Modifier and Type Interface Description interface
OptimizableGenerator
Commonality between sequence-based and table-based generatorsinterface
PersistentIdentifierGenerator
AnIdentifierGenerator
that requires creation of database objects.Classes in org.hibernate.id that implement StandardGenerator Modifier and Type Class Description class
AbstractUUIDGenerator
Deprecated.sinceUUIDHexGenerator
is deprecatedclass
Assigned
AnIdentifierGenerator
that returns the current identifier assigned to an instance.class
CompositeNestedGeneratedValueGenerator
For composite identifiers, defines a number of "nested" generations that need to happen to "fill" the identifier property(s).class
ForeignGenerator
Deprecated.This remains around as an implementation detail ofhbm.xml
mappings.class
GUIDGenerator
Deprecated.useUuidGenerator
class
IdentityGenerator
AnOnExecutionGenerator
that handlesIDENTITY
/"autoincrement" columns on those databases which support them.class
IncrementGenerator
AnIdentifierGenerator
that returns along
, constructed by counting from the maximum primary key value obtained by querying the table or tables at startup.class
SelectGenerator
A generator thatselect
s the just-insert
ed row to determine the column value assigned by the database.class
UUIDGenerator
Deprecated.useUuidGenerator
andUuidGenerator
insteadclass
UUIDHexGenerator
Deprecated.This remains around as an implementation detail ofhbm.xml
mappings. -
Uses of StandardGenerator in org.hibernate.id.enhanced
Classes in org.hibernate.id.enhanced that implement StandardGenerator 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.
-