Uses of Interface
org.hibernate.sql.model.MutationOperation
-
Packages that use MutationOperation Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.sql.model Package contains specialized SQL AST nodes and builders for table mutations of model parts originating from normal persistence-context events.org.hibernate.sql.model.ast SQL AST extensions for model mutations.org.hibernate.sql.model.ast.builder Support for buildingTableMutation
references for persisting entity mutation eventsorg.hibernate.sql.model.internal org.hibernate.sql.model.jdbc Extensions toJdbcOperation
for model mutations. -
-
Uses of MutationOperation in org.hibernate.dialect
-
Uses of MutationOperation in org.hibernate.sql.model
Subinterfaces of MutationOperation in org.hibernate.sql.model Modifier and Type Interface Description interface
PreparableMutationOperation
MutationOperation that is capable of being handled as a JDBCPreparedStatement
Person ( PERSON, PERSON_SUPP ) - PERSON_SUPP is optional secondary tableinterface
SelfExecutingUpdateOperation
Extension to MutationOperation for cases where the operation wants to handle execution itself.Methods in org.hibernate.sql.model with type parameters of type MutationOperation Modifier and Type Method Description default <O extends MutationOperation>
voidMutationOperationGroup. forEachOperation(BiConsumer<Integer,O> action)
Deprecated, for removal: This API element is subject to removal in a future version.Will be removed.default <O extends MutationOperation>
booleanMutationOperationGroup. hasMatching(BiFunction<Integer,O,Boolean> matcher)
Deprecated, for removal: This API element is subject to removal in a future version.Will be removed.Methods in org.hibernate.sql.model that return MutationOperation Modifier and Type Method Description MutationOperation
MutationOperationGroup. getOperation(int idx)
Gets a specific MutationOperation from the groupMutationOperation
MutationOperationGroup. getOperation(String tableName)
Get the operation for a specific table.MutationOperation
MutationOperationGroup. getSingleOperation()
Get the singular operation, assuming there is just one. -
Uses of MutationOperation in org.hibernate.sql.model.ast
Classes in org.hibernate.sql.model.ast with type parameters of type MutationOperation Modifier and Type Class Description class
AbstractRestrictedTableMutation<O extends MutationOperation>
class
AbstractTableMutation<O extends MutationOperation>
BaseTableMutation
supportclass
AbstractTableUpdate<O extends MutationOperation>
Base support for TableUpdate implementationsinterface
RestrictedTableMutation<O extends MutationOperation>
Specialized TableMutation implementation for mutations which define a where-clauseinterface
TableMutation<O extends MutationOperation>
Describes the mutation of a model table (mapped by an entity or collection) triggered from flush.interface
TableUpdate<O extends MutationOperation>
Models an update to a model (entity or collection) table, triggered from flushMethods in org.hibernate.sql.model.ast with type parameters of type MutationOperation Modifier and Type Method Description <O extends MutationOperation,M extends TableMutation<O>>
voidMutationGroup. forEachTableMutation(BiConsumer<Integer,M> action)
Deprecated, for removal: This API element is subject to removal in a future version.<O extends MutationOperation,M extends TableMutation<O>>
MMutationGroup. getTableMutation(String tableName)
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of MutationOperation in org.hibernate.sql.model.ast.builder
Classes in org.hibernate.sql.model.ast.builder with type parameters of type MutationOperation Modifier and Type Class Description class
AbstractRestrictedTableMutationBuilder<O extends MutationOperation,M extends RestrictedTableMutation<O>>
Specialization of TableMutationBuilder for mutations which contain a restriction.class
AbstractTableUpdateBuilder<O extends MutationOperation>
Base support for TableUpdateBuilder implementationsclass
CollectionRowDeleteByUpdateSetNullBuilder<O extends MutationOperation>
Custom table update builder for one-to-many collections that handles row deletesinterface
RestrictedTableMutationBuilder<O extends MutationOperation,M extends RestrictedTableMutation<O>>
SpecializedTableMutationBuilder
implementation for building mutations which have awhere
clause.interface
TableUpdateBuilder<O extends MutationOperation>
TableMutationBuilder
implementation forupdate
statements.class
TableUpdateBuilderStandard<O extends MutationOperation>
Standard TableUpdateBuilder implementation -
Uses of MutationOperation in org.hibernate.sql.model.internal
Methods in org.hibernate.sql.model.internal with type parameters of type MutationOperation Modifier and Type Method Description <O extends MutationOperation,M extends TableMutation<O>>
voidMutationGroupNone. forEachTableMutation(BiConsumer<Integer,M> action)
<O extends MutationOperation,M extends TableMutation<O>>
voidMutationGroupSingle. forEachTableMutation(BiConsumer<Integer,M> action)
<O extends MutationOperation,M extends TableMutation<O>>
voidMutationGroupStandard. forEachTableMutation(BiConsumer<Integer,M> action)
Methods in org.hibernate.sql.model.internal that return MutationOperation Modifier and Type Method Description protected MutationOperation
OptionalTableUpdate. createMutationOperation(TableMapping tableDetails, String updateSql, List<JdbcParameterBinder> effectiveBinders)
MutationOperation
OptionalTableUpdate. createMutationOperation(ValuesAnalysis valuesAnalysis, SessionFactoryImplementor factory)
MutationOperation
EntityMutationOperationGroupStandard. getOperation(int idx)
MutationOperation
EntityMutationOperationGroupStandard. getOperation(String tableName)
MutationOperation
EntityMutationOperationGroupStandard. getSingleOperation()
Methods in org.hibernate.sql.model.internal with parameters of type MutationOperation Modifier and Type Method Description static MutationOperationGroup
MutationOperationGroupFactory. manyOperations(MutationType mutationType, MutationTarget mutationTarget, MutationOperation[] operations)
static MutationOperationGroup
MutationOperationGroupFactory. singleOperation(MutationGroup mutationGroup, MutationOperation operation)
static MutationOperationGroup
MutationOperationGroupFactory. singleOperation(MutationType mutationType, MutationTarget mutationTarget, MutationOperation operation)
-
Uses of MutationOperation in org.hibernate.sql.model.jdbc
Subinterfaces of MutationOperation in org.hibernate.sql.model.jdbc Modifier and Type Interface Description interface
JdbcMutationOperation
JdbcOperation extension for model mutations stemming from persistence context flushesClasses in org.hibernate.sql.model.jdbc that implement MutationOperation Modifier and Type Class Description class
AbstractJdbcMutation
class
DeleteOrUpsertOperation
class
JdbcDeleteMutation
class
JdbcInsertMutation
Descriptor for a table insert originating from a flushclass
JdbcUpdateMutation
Describes the update of a single tableclass
MergeOperation
JdbcMutation implementation for MERGE handlingclass
OptionalTableUpdateOperation
Legacy "upsert" handling, conditionally using INSERT, UPDATE and DELETE statements as required for optional secondary tables.class
UpsertOperation
JdbcMutation implementation for UPSERT handling
-