Uses of Interface
org.hibernate.query.CommonQueryContract
-
Packages that use CommonQueryContract Package Description org.hibernate.procedure Defines support for executing database stored procedures and functions and accessing their outputs.org.hibernate.procedure.internal Defines the internal implementation of the stored procedure SPI.org.hibernate.procedure.spi Defines an SPI for calling stored procedures and functions.org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.hql.spi SPIs for HQL support.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sql.internal Implementation of the SPIs for native SQL query support.org.hibernate.query.sql.spi SPIs for native SQL query support.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.spi SPI-level SQM contracts -
-
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 interfaceMutationQueryWithin the context of an active session, an instance of this type represents an executable mutation query, that is, aninsert,update, ordelete.interfaceNativeQuery<T>Within the context of an active session, an instance of this type represents an executable query written in the native SQL dialect of the underlying database.interfaceQuery<R>Within the context of an active session, an instance of this type represents an executable query, either: a query written in HQL, a named query written in HQL or native SQL, or a criteria query.interfaceSelectionQuery<R>Within the context of an active session, an instance of this type represents an executable selection query, that is, aselect.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(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)Set a hint.CommonQueryContractCommonQueryContract. setParameter(int parameter, Object value)Bind the given argument to an ordinal query parameter.CommonQueryContractCommonQueryContract. setParameter(int parameter, Instant value, TemporalType temporalType)Bind anInstantto an ordinal query parameter using just the portion indicated by the givenTemporalType.CommonQueryContractCommonQueryContract. setParameter(int parameter, Calendar value, TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(int parameter, Date value, 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(Parameter<Calendar> param, Calendar value, TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)<T> CommonQueryContractCommonQueryContract. setParameter(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, TemporalType temporalType)Bind anInstantto the named query parameter using just the portion indicated by the givenTemporalType.CommonQueryContractCommonQueryContract. setParameter(String parameter, Calendar value, TemporalType temporalType)CommonQueryContractCommonQueryContract. setParameter(String parameter, Date value, 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, TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Calendar value, TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(int position, Date value, TemporalType temporalType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(int position, P value, Class<P> javaType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(int position, P value, BindableType<P> type)CommonQueryContractAbstractCommonQueryContract. setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)<P> CommonQueryContractAbstractCommonQueryContract. setParameter(Parameter<P> parameter, P value)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Object value)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Instant value, TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Calendar value, TemporalType temporalType)CommonQueryContractAbstractCommonQueryContract. setParameter(String name, Date value, 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> -
Uses of CommonQueryContract in org.hibernate.query.sqm.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.sqm.spi Modifier and Type Interface Description interfaceSqmSelectionQueryImplementor<R>Classes in org.hibernate.query.sqm.spi that implement CommonQueryContract Modifier and Type Class Description classDelegatingSqmSelectionQueryImplementor<R>
-