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 interface
ProcedureCall
Defines 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 class
ProcedureCallImpl<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 interface
ProcedureCallImplementor<R>
-
Uses of CommonQueryContract in org.hibernate.query
Subinterfaces of CommonQueryContract in org.hibernate.query Modifier and Type Interface Description interface
MutationQuery
Within the context of an active session, an instance of this type represents an executable mutation query, that is, aninsert
,update
, ordelete
.interface
NativeQuery<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.interface
Query<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.interface
SelectionQuery<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 CommonQueryContract
CommonQueryContract. setComment(String comment)
Set a comment for this query.CommonQueryContract
CommonQueryContract. setFlushMode(FlushModeType flushMode)
Set theFlushMode
in to use for this query.CommonQueryContract
CommonQueryContract. setHibernateFlushMode(FlushMode flushMode)
Set the currentFlushMode
in effect for this query.CommonQueryContract
CommonQueryContract. setHint(String hintName, Object value)
Set a hint.CommonQueryContract
CommonQueryContract. setParameter(int parameter, Object value)
Bind the given argument to an ordinal query parameter.CommonQueryContract
CommonQueryContract. setParameter(int parameter, Instant value, TemporalType temporalType)
Bind anInstant
to an ordinal query parameter using just the portion indicated by the givenTemporalType
.CommonQueryContract
CommonQueryContract. setParameter(int parameter, Calendar value, TemporalType temporalType)
CommonQueryContract
CommonQueryContract. setParameter(int parameter, Date value, TemporalType temporalType)
<P> CommonQueryContract
CommonQueryContract. setParameter(int parameter, P value, Class<P> type)
Bind the given argument to an ordinal query parameter using the givenClass
reference to attempt to infer theBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameter(int parameter, P value, BindableType<P> type)
Bind the given argument to an ordinal query parameter using the givenBindableType
.CommonQueryContract
CommonQueryContract. setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType)
CommonQueryContract
CommonQueryContract. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)
<T> CommonQueryContract
CommonQueryContract. setParameter(Parameter<T> param, T value)
CommonQueryContract
CommonQueryContract. setParameter(String parameter, Object value)
Bind the given argument to a named query parameter.CommonQueryContract
CommonQueryContract. setParameter(String parameter, Instant value, TemporalType temporalType)
Bind anInstant
to the named query parameter using just the portion indicated by the givenTemporalType
.CommonQueryContract
CommonQueryContract. setParameter(String parameter, Calendar value, TemporalType temporalType)
CommonQueryContract
CommonQueryContract. setParameter(String parameter, Date value, TemporalType temporalType)
<P> CommonQueryContract
CommonQueryContract. setParameter(String parameter, P value, Class<P> type)
Bind the given argument to a named query parameter using the givenClass
reference to attempt to infer theBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameter(String parameter, P value, BindableType<P> type)
Bind the given argument to a named query parameter using the givenBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> type)
Bind an argument to the query parameter represented by the givenQueryParameter
, using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<P> parameter, P val, BindableType<P> type)
Bind an argument to the query parameter represented by the givenQueryParameter
, using the givenBindableType
.<T> CommonQueryContract
CommonQueryContract. setParameter(QueryParameter<T> parameter, T value)
Bind an argument to the query parameter represented by the givenQueryParameter
.CommonQueryContract
CommonQueryContract. setParameterList(int parameter, Object[] values)
Bind multiple arguments to an ordinal query parameter.CommonQueryContract
CommonQueryContract. setParameterList(int parameter, Collection values)
Bind multiple arguments to an ordinal query parameter.<P> CommonQueryContract
CommonQueryContract. setParameterList(int parameter, Collection<? extends P> values, Class<P> javaType)
Bind multiple arguments to an ordinal query parameter using the givenClass
reference to attempt to infer theBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameterList(int parameter, Collection<? extends P> values, BindableType<P> type)
Bind multiple arguments to an ordinal query parameter using the givenBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameterList(int parameter, P[] values, Class<P> javaType)
Bind multiple arguments to an ordinal query parameter using the givenClass
reference to attempt to infer theBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameterList(int parameter, P[] values, BindableType<P> type)
Bind multiple arguments to an ordinal query parameter using the givenBindableType
.CommonQueryContract
CommonQueryContract. setParameterList(String parameter, Object[] values)
Bind multiple arguments to a named query parameter.CommonQueryContract
CommonQueryContract. setParameterList(String parameter, Collection values)
Bind multiple arguments to a named query parameter.<P> CommonQueryContract
CommonQueryContract. setParameterList(String parameter, Collection<? extends P> values, Class<P> javaType)
Bind multiple arguments to a named query parameter using the givenClass
reference to attempt to infer theBindableType
If unable to infer an appropriateBindableType
, fall back tosetParameterList(String, Collection)
.<P> CommonQueryContract
CommonQueryContract. setParameterList(String parameter, Collection<? extends P> values, BindableType<P> type)
Bind multiple arguments to a named query parameter using the givenBindableType
.<P> CommonQueryContract
CommonQueryContract. 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 theBindableType
to use.<P> CommonQueryContract
CommonQueryContract. setParameterList(String parameter, P[] values, BindableType<P> type)
Bind multiple arguments to a named query parameter using the givenBindableType
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
CommonQueryContract. 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> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
using the givenClass
reference to attempt to infer theBindableType
to use.<P> CommonQueryContract
CommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
Bind multiple arguments to the query parameter represented by the givenQueryParameter
, using the given theBindableType
.CommonQueryContract
CommonQueryContract. 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.CommonQueryContract
CommonQueryContract. setProperties(Map bean)
Bind the values of the givenMap
to named parameters of the query, matching key names with parameter names and mapping value types to Hibernate types using heuristics.CommonQueryContract
CommonQueryContract. 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 interface
SqmQueryImplementor<R>
QueryImplementor
specialization 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 interface
QueryImplementor<R>
interface
SqmQuery
Query based on an SQM tree.Classes in org.hibernate.query.spi that implement CommonQueryContract Modifier and Type Class Description class
AbstractCommonQueryContract
class
AbstractQuery<R>
class
AbstractSelectionQuery<R>
Methods in org.hibernate.query.spi that return CommonQueryContract Modifier and Type Method Description CommonQueryContract
AbstractCommonQueryContract. setComment(String comment)
CommonQueryContract
AbstractCommonQueryContract. setHibernateFlushMode(FlushMode flushMode)
CommonQueryContract
AbstractCommonQueryContract. setHint(String hintName, Object value)
CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, Object value)
CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, Instant value, TemporalType temporalType)
CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, Calendar value, TemporalType temporalType)
CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, Date value, TemporalType temporalType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, P value, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(int position, P value, BindableType<P> type)
CommonQueryContract
AbstractCommonQueryContract. setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType)
CommonQueryContract
AbstractCommonQueryContract. setParameter(Parameter<Date> param, Date value, TemporalType temporalType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(Parameter<P> parameter, P value)
CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, Object value)
CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, Instant value, TemporalType temporalType)
CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, Calendar value, TemporalType temporalType)
CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, Date value, TemporalType temporalType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, P value, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(String name, P value, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameter(QueryParameter<P> parameter, P value, BindableType<P> type)
CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, Object[] values)
CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, Collection values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, Collection<? extends P> values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, Collection<? extends P> values, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, P[] values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(int position, P[] values, BindableType<P> type)
CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, Object[] values)
CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, Collection values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, Collection<? extends P> values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, Collection<? extends P> values, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, P[] values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(String name, P[] values, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, Collection<? extends P> values, BindableType<P> type)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, Class<P> javaType)
<P> CommonQueryContract
AbstractCommonQueryContract. setParameterList(QueryParameter<P> parameter, P[] values, BindableType<P> type)
CommonQueryContract
AbstractCommonQueryContract. setProperties(Object bean)
CommonQueryContract
AbstractCommonQueryContract. setProperties(Map map)
CommonQueryContract
AbstractCommonQueryContract. 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 class
NativeQueryImpl<R>
-
Uses of CommonQueryContract in org.hibernate.query.sql.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.sql.spi Modifier and Type Interface Description interface
NativeQueryImplementor<R>
-
Uses of CommonQueryContract in org.hibernate.query.sqm
Subinterfaces of CommonQueryContract in org.hibernate.query.sqm Modifier and Type Interface Description interface
SqmSelectionQuery<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 class
QuerySqmImpl<R>
Query
implementation based on an SQMclass
SqmSelectionQueryImpl<R>
-
Uses of CommonQueryContract in org.hibernate.query.sqm.spi
Subinterfaces of CommonQueryContract in org.hibernate.query.sqm.spi Modifier and Type Interface Description interface
SqmSelectionQueryImplementor<R>
Classes in org.hibernate.query.sqm.spi that implement CommonQueryContract Modifier and Type Class Description class
DelegatingSqmSelectionQueryImplementor<R>
-