Uses of Class
org.hibernate.sql.model.ast.ColumnValueBinding
-
Packages that use ColumnValueBinding 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.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 -
-
Uses of ColumnValueBinding in org.hibernate.dialect
Methods in org.hibernate.dialect with parameters of type ColumnValueBinding Modifier and Type Method Description protected void
SqlAstTranslatorWithMerge. renderMergeUsingQuerySelection(ColumnValueBinding selectionBinding)
-
Uses of ColumnValueBinding in org.hibernate.sql.model.ast
Methods in org.hibernate.sql.model.ast that return ColumnValueBinding Modifier and Type Method Description protected ColumnValueBinding
ColumnValueBindingList. createValueBinding(String columnName, String customWriteExpression, JdbcMapping jdbcMapping)
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)
static ColumnValueBinding
ColumnValueBindingBuilder. createValueBinding(String columnName, String writeExpression, JdbcMapping jdbcMapping, MutatingTableReference mutatingTableReference, ParameterUsage parameterUsage, Consumer<Object> parameterConsumer)
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).protected List<ColumnValueBinding>
AbstractTableInsertBuilder. getLobValueBindingList()
protected List<ColumnValueBinding>
AbstractTableUpdateBuilder. getLobValueBindings()
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>
OptionalTableUpdate. getValueBindings()
List<ColumnValueBinding>
TableUpdateNoSet. getValueBindings()
Method parameters in org.hibernate.sql.model.internal with type arguments of type ColumnValueBinding Modifier and Type Method Description void
OptionalTableUpdate. forEachValueBinding(BiConsumer<Integer,ColumnValueBinding> consumer)
void
TableUpdateNoSet. forEachValueBinding(BiConsumer<Integer,ColumnValueBinding> consumer)
-