Uses of Interface
org.hibernate.generator.OnExecutionGenerator
-
Packages that use OnExecutionGenerator Package Description org.hibernate.generator.internal 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.insert Contains a framework of strategies for retrieving database-generated ids.org.hibernate.sql This package contains helper classes for rendering SQL fragments and SQL statements.org.hibernate.tuple Most contracts here have been replaced by the new runtime mapping model. -
-
Uses of OnExecutionGenerator in org.hibernate.generator.internal
Classes in org.hibernate.generator.internal that implement OnExecutionGenerator Modifier and Type Class Description class
CurrentTimestampGeneration
Value generation strategy which produces a timestamp using the databasecurrent_timestamp
function or the JVM current instant.class
GeneratedAlwaysGeneration
ForGeneratedColumn
.class
GeneratedGeneration
A fairly genericOnExecutionGenerator
which marks a property as generated in the database with semantics given explicitly by a@Generated
annotation. -
Uses of OnExecutionGenerator in org.hibernate.id
Subinterfaces of OnExecutionGenerator in org.hibernate.id Modifier and Type Interface Description interface
PostInsertIdentifierGenerator
The counterpart toIdentifierGenerator
for values generated by the database.Classes in org.hibernate.id that implement OnExecutionGenerator Modifier and Type Class Description class
IdentityGenerator
AnOnExecutionGenerator
that handlesIDENTITY
/"autoincrement" columns on those databases which support them.class
SelectGenerator
A generator thatselect
s the just-insert
ed row to determine the column value assigned by the database. -
Uses of OnExecutionGenerator in org.hibernate.id.insert
Methods in org.hibernate.id.insert with parameters of type OnExecutionGenerator Modifier and Type Method Description Insert
InsertSelectIdentityInsert. addGeneratedColumns(String[] columnNames, OnExecutionGenerator generator)
-
Uses of OnExecutionGenerator in org.hibernate.sql
Methods in org.hibernate.sql with parameters of type OnExecutionGenerator Modifier and Type Method Description Insert
Insert. addGeneratedColumns(String[] columnNames, OnExecutionGenerator generator)
-
Uses of OnExecutionGenerator in org.hibernate.tuple
Subinterfaces of OnExecutionGenerator in org.hibernate.tuple Modifier and Type Interface Description interface
AnnotationValueGeneration<A extends Annotation>
Deprecated, for removal: This API element is subject to removal in a future version.Replaced byAnnotationBasedGenerator
interface
ValueGeneration
Deprecated, for removal: This API element is subject to removal in a future version.Replaced byGenerator
Classes in org.hibernate.tuple that implement OnExecutionGenerator Modifier and Type Class Description class
CreationTimestampGeneration
Deprecated.class
UpdateTimestampGeneration
Deprecated.
-