Uses of Interface
org.hibernate.jdbc.Expectation
-
Packages that use Expectation Package Description org.hibernate.engine.jdbc.batch.internal Internals for JDBC batching support.org.hibernate.engine.jdbc.batch.spi Defines contracts for JDBC batching support.org.hibernate.engine.jdbc.mutation.group org.hibernate.engine.jdbc.mutation.internal org.hibernate.id.insert Contains a framework of strategies for retrieving database-generated ids.org.hibernate.jdbc Defines the notion of a unit of JDBC work that may be executed by the session at the request of the client.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.persister.entity.mutation Defines support for performing mutation operations originating from persistence-context events.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.internal org.hibernate.sql.model.jdbc Extensions toJdbcOperation
for model mutations. -
-
Uses of Expectation in org.hibernate.engine.jdbc.batch.internal
Methods in org.hibernate.engine.jdbc.batch.internal that return Expectation Modifier and Type Method Description Expectation
BasicBatchKey. getExpectation()
Constructors in org.hibernate.engine.jdbc.batch.internal with parameters of type Expectation Constructor Description BasicBatchKey(String comparison, Expectation expectation)
Constructs a BasicBatchKey -
Uses of Expectation in org.hibernate.engine.jdbc.batch.spi
Methods in org.hibernate.engine.jdbc.batch.spi that return Expectation Modifier and Type Method Description Expectation
BatchKey. getExpectation()
Deprecated.With no replacement. -
Uses of Expectation in org.hibernate.engine.jdbc.mutation.group
Methods in org.hibernate.engine.jdbc.mutation.group that return Expectation Modifier and Type Method Description Expectation
PreparedStatementDetails. getExpectation()
The expectation used to validate the outcome of the execution -
Uses of Expectation in org.hibernate.engine.jdbc.mutation.internal
Methods in org.hibernate.engine.jdbc.mutation.internal that return Expectation Modifier and Type Method Description Expectation
PreparedStatementDetailsStandard. getExpectation()
Constructors in org.hibernate.engine.jdbc.mutation.internal with parameters of type Expectation Constructor Description PreparedStatementDetailsStandard(PreparableMutationOperation tableMutation, String sql, Supplier<PreparedStatement> jdbcStatementCreator, Expectation expectation, JdbcServices jdbcServices)
-
Uses of Expectation in org.hibernate.id.insert
-
Uses of Expectation in org.hibernate.jdbc
Classes in org.hibernate.jdbc that implement Expectation Modifier and Type Class Description static class
Expectations.BasicExpectation
static class
Expectations.BasicParamExpectation
Fields in org.hibernate.jdbc declared as Expectation Modifier and Type Field Description static Expectation
Expectations. BASIC
static Expectation
Expectations. NONE
static Expectation
Expectations. PARAM
Methods in org.hibernate.jdbc that return Expectation Modifier and Type Method Description static Expectation
Expectations. appropriateExpectation(ExecuteUpdateResultCheckStyle style)
-
Uses of Expectation in org.hibernate.persister.entity
Fields in org.hibernate.persister.entity declared as Expectation Modifier and Type Field Description protected Expectation[]
AbstractEntityPersister. deleteExpectations
Deprecated.protected Expectation[]
AbstractEntityPersister. insertExpectations
Deprecated.protected Expectation[]
AbstractEntityPersister. updateExpectations
Deprecated.Methods in org.hibernate.persister.entity with parameters of type Expectation Modifier and Type Method Description protected boolean
AbstractEntityPersister. check(int rows, Object id, int tableNumber, Expectation expectation, PreparedStatement statement, String statementSQL)
-
Uses of Expectation in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation that return Expectation Modifier and Type Method Description Expectation
EntityTableMapping. getDeleteExpectation()
Expectation
EntityTableMapping. getInsertExpectation()
Expectation
EntityTableMapping. getUpdateExpectation()
Constructors in org.hibernate.persister.entity.mutation with parameters of type Expectation Constructor Description EntityTableMapping(String tableName, int relativePosition, EntityTableMapping.KeyMapping keyMapping, boolean isOptional, boolean isInverse, boolean isIdentifierTable, int[] attributeIndexes, Expectation insertExpectation, String insertCustomSql, boolean insertCallable, Expectation updateExpectation, String updateCustomSql, boolean updateCallable, boolean cascadeDeleteEnabled, Expectation deleteExpectation, String deleteCustomSql, boolean deleteCallable)
-
Uses of Expectation in org.hibernate.sql.model
Methods in org.hibernate.sql.model that return Expectation Modifier and Type Method Description Expectation
PreparableMutationOperation. getExpectation()
The expected outcome of executionExpectation
TableMapping.MutationDetails. getExpectation()
The expectation for this mutationConstructors in org.hibernate.sql.model with parameters of type Expectation Constructor Description MutationDetails(MutationType mutationType, Expectation expectation, String customSql, boolean callable)
-
Uses of Expectation in org.hibernate.sql.model.ast
Methods in org.hibernate.sql.model.ast that return Expectation Modifier and Type Method Description Expectation
AbstractTableDelete. getExpectation()
Expectation
AbstractTableInsert. getExpectation()
Expectation
AbstractTableUpdate. getExpectation()
Expectation
TableMutation. getExpectation()
The validation expectation for the mutation -
Uses of Expectation in org.hibernate.sql.model.internal
Methods in org.hibernate.sql.model.internal that return Expectation Modifier and Type Method Description Expectation
OptionalTableUpdate. getExpectation()
Expectation
TableUpdateNoSet. getExpectation()
Expectation
TableUpdateStandard. getExpectation()
Constructors in org.hibernate.sql.model.internal with parameters of type Expectation Constructor Description TableUpdateStandard(MutatingTableReference mutatingTable, MutationTarget<?> mutationTarget, String sqlComment, List<ColumnValueBinding> valueBindings, List<ColumnValueBinding> keyRestrictionBindings, List<ColumnValueBinding> optLockRestrictionBindings, String whereFragment, Expectation expectation)
TableUpdateStandard(MutatingTableReference tableReference, MutationTarget<?> mutationTarget, String sqlComment, List<ColumnValueBinding> valueBindings, List<ColumnValueBinding> keyRestrictionBindings, List<ColumnValueBinding> optLockRestrictionBindings, List<ColumnValueParameter> parameters, String whereFragment, Expectation expectation)
-
Uses of Expectation in org.hibernate.sql.model.jdbc
Methods in org.hibernate.sql.model.jdbc that return Expectation Modifier and Type Method Description Expectation
AbstractJdbcMutation. getExpectation()
Constructors in org.hibernate.sql.model.jdbc with parameters of type Expectation Constructor Description AbstractJdbcMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
JdbcDeleteMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
JdbcDeleteMutation(TableMapping tableDetails, MutationType mutationType, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
JdbcInsertMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
JdbcUpdateMutation(TableMapping tableDetails, MutationTarget<?> mutationTarget, String sql, boolean callable, Expectation expectation, List<? extends JdbcParameterBinder> parameterBinders)
-