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 toJdbcOperationfor 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 ExpectationBasicBatchKey. 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 ExpectationBatchKey. 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 ExpectationPreparedStatementDetails. 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 ExpectationPreparedStatementDetailsStandard. 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 classExpectations.BasicExpectationstatic classExpectations.BasicParamExpectationFields in org.hibernate.jdbc declared as Expectation Modifier and Type Field Description static ExpectationExpectations. BASICstatic ExpectationExpectations. NONEstatic ExpectationExpectations. PARAMMethods in org.hibernate.jdbc that return Expectation Modifier and Type Method Description static ExpectationExpectations. 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. deleteExpectationsDeprecated.protected Expectation[]AbstractEntityPersister. insertExpectationsDeprecated.protected Expectation[]AbstractEntityPersister. updateExpectationsDeprecated.Methods in org.hibernate.persister.entity with parameters of type Expectation Modifier and Type Method Description protected booleanAbstractEntityPersister. 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 ExpectationEntityTableMapping. getDeleteExpectation()ExpectationEntityTableMapping. getInsertExpectation()ExpectationEntityTableMapping. 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 ExpectationPreparableMutationOperation. getExpectation()The expected outcome of executionExpectationTableMapping.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 ExpectationAbstractTableDelete. getExpectation()ExpectationAbstractTableInsert. getExpectation()ExpectationAbstractTableUpdate. getExpectation()ExpectationTableMutation. 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 ExpectationOptionalTableUpdate. getExpectation()ExpectationTableUpdateNoSet. getExpectation()ExpectationTableUpdateStandard. 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 ExpectationAbstractJdbcMutation. 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)
-