Uses of Interface
org.hibernate.query.CommonQueryContract
-
Packages that use CommonQueryContract Package Description org.hibernate.procedure org.hibernate.procedure.internal Defines the internal support for implementing stored procedure calling.org.hibernate.procedure.spi org.hibernate.query org.hibernate.query.hql.spi org.hibernate.query.spi org.hibernate.query.sql.internal org.hibernate.query.sql.spi org.hibernate.query.sqm org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation details -
-
Uses of CommonQueryContract in org.hibernate.procedure
Subinterfaces of CommonQueryContract in org.hibernate.procedure Modifier and Type Interface Description interfaceProcedureCallDefines support for executing database stored procedures and functions. -
Uses of CommonQueryContract in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement CommonQueryContract Modifier and Type Class Description classProcedureCallImpl<R>Standard implementation ofProcedureCall -
Uses of CommonQueryContract in org.hibernate.procedure.spi
Subinterfaces of CommonQueryContract in org.hibernate.procedure.spi Modifier and Type Interface Description interfaceProcedureCallImplementor<R> -
Uses of CommonQueryContract in org.hibernate.query
Subinterfaces of CommonQueryContract in org.hibernate.query Modifier and Type Interface Description interfaceMutationQueryModels a mutation (insert, update, or delete) query.interfaceNativeQuery<T>Represents a native (SQL) query.interfaceQuery<R>Represents a criteria query or a query written in HQL.interfaceSelectionQuery<R>Models a selection query returning results.Methods in org.hibernate.query that return CommonQueryContract Modifier and Type Method Description CommonQueryContractCommonQueryContract. setComment(String comment)Set a comment for this query.CommonQueryContractCommonQueryContract. setFlushMode(jakarta.persistence.FlushModeType flushMode)Set theFlushModein to use for this query.CommonQueryContractCommonQueryContract. setHibernateFlushMode(FlushMode flushMode)Set the currentFlushModein effect for this query.CommonQueryContractCommonQueryContract. setHint(String hintName, Object value)Apply hints to the query.CommonQueryContractCommonQueryContract. setParameter(int parameter, Object value)Bind the given argument to an ordinal query parameter.CommonQueryContractCommonQueryContract. setParameter(int parameter, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantto an ordinal query parameter using just the portion indicated by the givenTemporalType.CommonQueryContractCommonQueryContract. setParameter(int parameter, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(int parameter, Date value, jakarta.persistence.TemporalType temporalType)<P> CommonQueryContractCommonQueryContract. setParameter(int parameter, P value, Class<P> type)Bind the given argument to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> CommonQueryContractCommonQueryContract. setParameter(int parameter, P value, BindableType<P> type)Bind the given argument to an ordinal query parameter using the givenBindableType.CommonQueryContractCommonQueryContract. setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)<T> CommonQueryContractCommonQueryContract. setParameter(jakarta.persistence.Parameter<T> param, T value)CommonQueryContractCommonQueryContract. setParameter(String parameter, Object value)Bind the given argument to a named query parameter.CommonQueryContractCommonQueryContract. setParameter(String parameter, Instant value, jakarta.persistence.TemporalType temporalType)Bind anInstantto the named query parameter using just the portion indicated by the givenTemporalType.CommonQueryContractCommonQueryContract. setParameter(String parameter, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(String parameter, Date value, jakarta.persistence.TemporalType temporalType)<P> CommonQueryContractCommonQueryContract. setParameter(String parameter, P value, Class<P> type)Bind the given argument to a named query parameter using the givenClassreference to attempt to infer theBindableType.<P> CommonQueryContractCommonQueryContract. setParameter(String parameter, P value, BindableType<P> type)Bind the given argument to a named query parameter using the givenBindableType.<P> CommonQueryContractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> type)Bind an argument to the query parameter represented by the givenQueryParameter, using the givenClassreference to attempt to infer theBindableTypeto use.<P> CommonQueryContractCommonQueryContract. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)Bind an argument to the query parameter represented by the givenQueryParameter, using the givenBindableType.<T> CommonQueryContractCommonQueryContract. setParameter(QueryParameter<T> parameter, T value)Bind an argument to the query parameter represented by the givenQueryParameter.CommonQueryContractCommonQueryContract. setParameterList(int parameter, Object[] values)Bind multiple arguments to an ordinal query parameter.CommonQueryContractCommonQueryContract. setParameterList(int parameter, Collection values)Bind multiple arguments to an ordinal query parameter.<P> CommonQueryContractCommonQueryContract. setParameterList(int parameter, Collection<? extends P> values, Class<P> javaType)Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(int parameter, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(int parameter, P[] values, Class<P> javaType)Bind multiple arguments to an ordinal query parameter using the givenClassreference to attempt to infer theBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(int parameter, P[] values, BindableType<P> type)Bind multiple arguments to an ordinal query parameter using the givenBindableType.CommonQueryContractCommonQueryContract. setParameterList(String parameter, Object[] values)Bind multiple arguments to a named query parameter.CommonQueryContractCommonQueryContract. setParameterList(String parameter, Collection values)Bind multiple arguments to a named query parameter.<P> CommonQueryContractCommonQueryContract. setParameterList(String parameter, Collection<? extends P> values, Class<P> javaType)Bind multiple arguments to a named query parameter using the givenClassreference to attempt to infer theBindableTypeIf unable to infer an appropriateBindableType, fall back tosetParameterList(String, Collection).<P> CommonQueryContractCommonQueryContract. setParameterList(String parameter, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(String parameter, P[] values, Class<P> javaType)Bind multiple arguments to a named query parameter using the given Class reference to attempt to determine theBindableTypeto use.<P> CommonQueryContractCommonQueryContract. setParameterList(String parameter, P[] values, BindableType<P> type)Bind multiple arguments to a named query parameter using the givenBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)Bind multiple arguments to the query parameter represented by the givenQueryParameter, using the givenBindableType.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)Bind multiple arguments to the query parameter represented by the givenQueryParameter.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)Bind multiple arguments to the query parameter represented by the givenQueryParameterusing the givenClassreference to attempt to infer theBindableTypeto use.<P> CommonQueryContractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)Bind multiple arguments to the query parameter represented by the givenQueryParameter, using the given theBindableType.CommonQueryContractCommonQueryContract. setProperties(Object bean)Bind the property values of the given bean to named parameters of the query, matching property names with parameter names and mapping property types to Hibernate types using heuristics.CommonQueryContractCommonQueryContract. setProperties(Map bean)Bind the values of the givenMapto named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.CommonQueryContractCommonQueryContract. setTimeout(int timeout)Set the query timeout in seconds. -
Uses of CommonQueryContract in org.hibernate.query.hql.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.hql.spi Modifier and Type Interface Description interfaceSqmQueryImplementor<R>QueryImplementorspecialization for SQM-based Query references -
Uses of CommonQueryContract in org.hibernate.query.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.spi Modifier and Type Interface Description interfaceQueryImplementor<R>interfaceSqmQueryQuery based on an SQM tree.Classes in org.hibernate.query.spi that implement CommonQueryContract Modifier and Type Class Description classAbstractCommonQueryContractclassAbstractQuery<R>classAbstractSelectionQuery<R>Methods in org.hibernate.query.spi that return CommonQueryContract Modifier and Type Method Description CommonQueryContractAbstractCommonQueryContract. setComment(String comment)CommonQueryContractAbstractCommonQueryContract. setHibernateFlushMode(FlushMode flushMode)CommonQueryContractAbstractCommonQueryContract. setHint(String hintName, Object value)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Object value)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Instant value, jakarta.persistence.TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Date value, jakarta.persistence.TemporalType temporalType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(int position, P value, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(int position, P value, BindableType<P> type)CommonQueryContractAbstractCommonQueryContract. setParameter(jakarta.persistence.Parameter<Calendar> param, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(jakarta.persistence.Parameter<Date> param, Date value, jakarta.persistence.TemporalType temporalType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(jakarta.persistence.Parameter<P> parameter, P value)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Object value)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Instant value, jakarta.persistence.TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Calendar value, jakarta.persistence.TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Date value, jakarta.persistence.TemporalType temporalType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(String name, P value, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(String name, P value, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, Object[] values)CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, Collection values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, P[] values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(int position, P[] values, BindableType<P> type)CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, Object[] values)CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, Collection values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, P[] values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(String name, P[] values, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)CommonQueryContractAbstractCommonQueryContract. setProperties(Object bean)CommonQueryContractAbstractCommonQueryContract. setProperties(Map map)CommonQueryContractAbstractCommonQueryContract. setTimeout(int timeout) -
Uses of CommonQueryContract in org.hibernate.query.sql.internal
Classes in org.hibernate.query.sql.internal that implement CommonQueryContract Modifier and Type Class Description classNativeQueryImpl<R> -
Uses of CommonQueryContract in org.hibernate.query.sql.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.sql.spi Modifier and Type Interface Description interfaceNativeQueryImplementor<R> -
Uses of CommonQueryContract in org.hibernate.query.sqm
Subinterfaces of CommonQueryContract in org.hibernate.query.sqm Modifier and Type Interface Description interfaceSqmSelectionQuery<R> -
Uses of CommonQueryContract in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement CommonQueryContract Modifier and Type Class Description classQuerySqmImpl<R>Queryimplementation based on an SQMclassSqmSelectionQueryImpl<R>
-