Uses of Class
org.hibernate.sql.model.ast.ColumnValueBinding
-
Packages that use ColumnValueBinding Package Description org.hibernate.sql.model.ast SQL AST extensions for model mutationsorg.hibernate.sql.model.ast.builder Support for buildingTableMutation
references for persisting entity mutation eventsorg.hibernate.sql.model.internal -
-
Uses of ColumnValueBinding in org.hibernate.sql.model.ast
Methods in org.hibernate.sql.model.ast that return types with arguments of type ColumnValueBinding Modifier and Type Method Description List<ColumnValueBinding>
AbstractRestrictedTableMutation. getKeyBindings()
List<ColumnValueBinding>
RestrictedTableMutation. getKeyBindings()
The bindings for each key restriction (WHERE clause).List<ColumnValueBinding>
AbstractRestrictedTableMutation. getOptimisticLockBindings()
List<ColumnValueBinding>
RestrictedTableMutation. getOptimisticLockBindings()
All optimistic-lock bindings (WHERE clause), appended after key bindingsList<ColumnValueBinding>
AbstractTableInsert. getValueBindings()
List<ColumnValueBinding>
AbstractTableUpdate. getValueBindings()
List<ColumnValueBinding>
TableInsert. getValueBindings()
The value bindings for each column, including table key(s)List<ColumnValueBinding>
TableUpdate. getValueBindings()
The value bindings for each column. -
Uses of ColumnValueBinding in org.hibernate.sql.model.ast.builder
Methods in org.hibernate.sql.model.ast.builder that return ColumnValueBinding Modifier and Type Method Description protected ColumnValueBinding
AbstractTableMutationBuilder. createValueBinding(String columnName, String columnWriteFragment, JdbcMapping jdbcMapping)
protected ColumnValueBinding
AbstractTableMutationBuilder. createValueBinding(String columnName, String customWriteExpression, JdbcMapping jdbcMapping, ParameterUsage parameterUsage)
Methods in org.hibernate.sql.model.ast.builder that return types with arguments of type ColumnValueBinding Modifier and Type Method Description protected List<ColumnValueBinding>
AbstractTableInsertBuilder. getKeyBindingList()
protected List<ColumnValueBinding>
AbstractTableUpdateBuilder. getKeyBindings()
The bindings for each key restriction (WHERE clause).List<ColumnValueBinding>
AbstractRestrictedTableMutationBuilder. getKeyRestrictionBindings()
protected List<ColumnValueBinding>
AbstractTableInsertBuilder. getLobValueBindingList()
protected List<ColumnValueBinding>
AbstractTableUpdateBuilder. getLobValueBindings()
List<ColumnValueBinding>
AbstractRestrictedTableMutationBuilder. getOptimisticLockBindings()
protected List<ColumnValueBinding>
AbstractTableInsertBuilder. getValueBindingList()
protected List<ColumnValueBinding>
AbstractTableUpdateBuilder. getValueBindings()
The (non-LOB) bindings for each column being updated (SET clause)Method parameters in org.hibernate.sql.model.ast.builder with type arguments of type ColumnValueBinding Modifier and Type Method Description protected void
AbstractTableMutationBuilder. addColumn(String columnName, String columnWriteFragment, JdbcMapping jdbcMapping, List<ColumnValueBinding> list)
protected void
AbstractTableMutationBuilder. addColumn(String columnName, String columnWriteFragment, JdbcMapping jdbcMapping, ParameterUsage parameterUsage, List<ColumnValueBinding> list)
-
Uses of ColumnValueBinding in org.hibernate.sql.model.internal
Methods in org.hibernate.sql.model.internal that return types with arguments of type ColumnValueBinding Modifier and Type Method Description List<ColumnValueBinding>
TableUpdateNoSet. getValueBindings()
List<ColumnValueBinding>
TableUpsert. getValueBindings()
Method parameters in org.hibernate.sql.model.internal with type arguments of type ColumnValueBinding Modifier and Type Method Description void
TableUpdateNoSet. forEachValueBinding(BiConsumer<Integer,ColumnValueBinding> consumer)
void
TableUpsert. forEachValueBinding(BiConsumer<Integer,ColumnValueBinding> consumer)
-