Uses of Interface
org.hibernate.query.MutationOrSelectionQuery
Packages that use MutationOrSelectionQuery
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
Everything related to HQL/JPQL, native SQL, and criteria queries.
-
Uses of MutationOrSelectionQuery in org.hibernate
Methods in org.hibernate that return MutationOrSelectionQueryModifier and TypeMethodDescriptionSession.createNamedQuery(String name) Create an instance ofQueryfor the given named query or statement, without indicating the expected result type, if any, nor whether the query is a typed query which returns a result list, or an update, delete, or insert statement.SharedSessionContract.createNamedQuery(String name) Create an instance ofQueryfor the given named query or statement, without indicating the expected result type, if any, nor whether the query is a typed query which returns a result list, or an update, delete, or insert statement.Session.createQuery(String queryString) Create an instance ofQueryfor the given HQL query or statement, without indicating the expected result type, if any, nor whether the query is a typed query which returns a result list, or an update, delete, or insert statement.SharedSessionContract.createQuery(String queryString) Create an instance ofQueryfor the given HQL query or statement, without indicating the expected result type, if any, nor whether the query is a typed query which returns a result list, or an update, delete, or insert statement. -
Uses of MutationOrSelectionQuery in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return MutationOrSelectionQueryModifier and TypeMethodDescriptionSessionDelegatorBaseImpl.createNamedQuery(String name) SessionLazyDelegator.createNamedQuery(String name) SessionDelegatorBaseImpl.createQuery(String queryString) SessionLazyDelegator.createQuery(String queryString) -
Uses of MutationOrSelectionQuery in org.hibernate.query
Methods in org.hibernate.query that return MutationOrSelectionQueryModifier and TypeMethodDescriptionMutationOrSelectionQuery.addQueryHint(String hint) MutationOrSelectionQuery.disableFetchProfile(String profileName) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.enableFetchProfile(String profileName) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setCacheable(boolean cacheable) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setCacheMode(CacheMode cacheMode) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setCacheRegion(String cacheRegion) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setCacheStoreMode(CacheStoreMode cacheStoreMode) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setComment(String comment) MutationOrSelectionQuery.setConvertedParameter(int position, P value, Class<? extends AttributeConverter<P, ?>> converter) MutationOrSelectionQuery.setConvertedParameter(String name, P value, Class<? extends AttributeConverter<P, ?>> converter) MutationOrSelectionQuery.setEntityGraph(EntityGraph<? super Object> graph, GraphSemantic semantic) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setFetchSize(int fetchSize) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setFirstResult(int startPosition) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setFlushMode(FlushModeType flushMode) Deprecated.MutationOrSelectionQuery.setFollowOnStrategy(Locking.FollowOn followOnStrategy) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setHibernateLockMode(LockMode lockMode) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setLockMode(LockModeType lockMode) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setMaxResults(int maxResults) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setParameter(int position, Object value) MutationOrSelectionQuery.setParameter(int position, Instant value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(int position, Calendar value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(int position, Date value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(int position, P value, Type<P> type) MutationOrSelectionQuery.setParameter(int position, P value, Class<P> type) MutationOrSelectionQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(Parameter<P> param, P value) MutationOrSelectionQuery.setParameter(String name, Object value) MutationOrSelectionQuery.setParameter(String name, Instant value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(String name, Calendar value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(String name, Date value, TemporalType temporalType) Deprecated.MutationOrSelectionQuery.setParameter(String name, P value, Type<P> type) MutationOrSelectionQuery.setParameter(String name, P value, Class<P> type) MutationOrSelectionQuery.setParameter(QueryParameter<P> parameter, P value) MutationOrSelectionQuery.setParameter(QueryParameter<P> parameter, P val, Type<P> type) MutationOrSelectionQuery.setParameter(QueryParameter<P> parameter, P value, Class<P> type) MutationOrSelectionQuery.setParameterList(int position, Object[] values) MutationOrSelectionQuery.setParameterList(int position, Collection values) MutationOrSelectionQuery.setParameterList(int position, Collection<? extends P> values, Type<P> type) MutationOrSelectionQuery.setParameterList(int position, Collection<? extends P> values, Class<P> javaType) MutationOrSelectionQuery.setParameterList(int position, P[] values, Type<P> type) MutationOrSelectionQuery.setParameterList(int position, P[] values, Class<P> javaType) MutationOrSelectionQuery.setParameterList(String name, Object[] values) MutationOrSelectionQuery.setParameterList(String name, Collection values) MutationOrSelectionQuery.setParameterList(String name, Collection<? extends P> values, Type<P> type) MutationOrSelectionQuery.setParameterList(String name, Collection<? extends P> values, Class<P> javaType) MutationOrSelectionQuery.setParameterList(String name, P[] values, Type<P> type) MutationOrSelectionQuery.setParameterList(String name, P[] values, Class<P> javaType) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Type<P> type) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, Type<P> type) MutationOrSelectionQuery.setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType) MutationOrSelectionQuery.setParameters(Object... arguments) MutationOrSelectionQuery.setProperties(Object bean) MutationOrSelectionQuery.setProperties(Map bean) MutationOrSelectionQuery.setQueryFlushMode(QueryFlushMode queryFlushMode) MutationOrSelectionQuery.setQueryPlanCacheable(boolean queryPlanCacheable) Deprecated.MutationOrSelectionQuery.setReadOnly(boolean readOnly) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setResultListTransformer(ResultListTransformer<Object> transformer) Deprecated, for removal: This API element is subject to removal in a future version.MutationOrSelectionQuery.setTimeout(int timeout) MutationOrSelectionQuery.setTimeout(Timeout timeout) MutationOrSelectionQuery.setTimeout(Integer timeout)