NativeQuery<T> |
NativeQuery.addAttributeResult(String columnAlias,
SingularAttribute attribute) |
Defines a result based on a specified attribute.
|
NativeQuery<T> |
NativeQuery.addAttributeResult(String columnAlias,
Class entityJavaType,
String attributePath) |
Defines a result based on a specified attribute.
|
NativeQuery<T> |
NativeQuery.addAttributeResult(String columnAlias,
String entityName,
String attributePath) |
Defines a result based on a specified attribute.
|
NativeQuery<T> |
NativeQuery.addEntity(Class entityType) |
Declare a "root" entity, without specifying an alias.
|
NativeQuery<T> |
NativeQuery.addEntity(String entityName) |
Declare a "root" entity, without specifying an alias.
|
NativeQuery<T> |
NativeQuery.addEntity(String tableAlias,
Class entityType) |
Declare a "root" entity.
|
NativeQuery<T> |
NativeQuery.addEntity(String tableAlias,
Class entityClass,
LockMode lockMode) |
Declare a "root" entity, specifying a lock mode.
|
NativeQuery<T> |
NativeQuery.addEntity(String tableAlias,
String entityName) |
Declare a "root" entity.
|
NativeQuery<T> |
NativeQuery.addEntity(String tableAlias,
String entityName,
LockMode lockMode) |
Declare a "root" entity, specifying a lock mode.
|
NativeQuery<T> |
NativeQuery.addJoin(String tableAlias,
String path) |
Declare a join fetch result.
|
NativeQuery<T> |
NativeQuery.addJoin(String tableAlias,
String ownerTableAlias,
String joinPropertyName) |
Declare a join fetch result.
|
NativeQuery<T> |
NativeQuery.addJoin(String tableAlias,
String path,
LockMode lockMode) |
Declare a join fetch result, specifying a lock mode.
|
NativeQuery<T> |
NativeQuery.addQueryHint(String hint) |
|
NativeQuery<T> |
NativeQuery.addScalar(String columnAlias) |
Declare a scalar query result.
|
NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
Class javaType) |
Declare a scalar query result using the specified result type.
|
<C> NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
Class<C> relationalJavaType,
AttributeConverter<?,C> converter) |
Declare a scalar query result with an explicit conversion.
|
<C> NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
Class<C> relationalJavaType,
Class<? extends AttributeConverter<?,C>> converter) |
Declare a scalar query result with an explicit conversion.
|
<O,R> NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
Class<O> domainJavaType,
Class<R> jdbcJavaType,
AttributeConverter<O,R> converter) |
Declare a scalar query result with an explicit conversion.
|
<O,R> NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
Class<O> domainJavaType,
Class<R> jdbcJavaType,
Class<? extends AttributeConverter<O,R>> converter) |
Declare a scalar query result with an explicit conversion.
|
NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
BasicDomainType type) |
Declare a scalar query result.
|
NativeQuery<T> |
NativeQuery.addScalar(String columnAlias,
BasicTypeReference type) |
Declare a scalar query result.
|
NativeQuery<T> |
NativeQuery.addSynchronizedEntityClass(Class entityClass) |
|
NativeQuery<T> |
NativeQuery.addSynchronizedEntityName(String entityName) |
|
NativeQuery<T> |
NativeQuery.addSynchronizedQuerySpace(String querySpace) |
|
NativeQuery |
QueryProducer.createNativeQuery(String sqlString) |
Deprecated.
|
<R> NativeQuery<R> |
QueryProducer.createNativeQuery(String sqlString,
Class<R> resultClass) |
Create a NativeQuery instance for the given native SQL query
using an implicit mapping to the specified Java type.
|
<R> NativeQuery<R> |
QueryProducer.createNativeQuery(String sqlString,
Class<R> resultClass,
String tableAlias) |
Create a NativeQuery instance for the given native SQL query
using an implicit mapping to the specified Java entity type.
|
NativeQuery |
QueryProducer.createNativeQuery(String sqlString,
String resultSetMappingName) |
Deprecated.
|
<R> NativeQuery<R> |
QueryProducer.createNativeQuery(String sqlString,
String resultSetMappingName,
Class<R> resultClass) |
Create a NativeQuery instance for the given native SQL query
using an explicit mapping to the specified Java type.
|
NativeQuery |
QueryProducer.getNamedNativeQuery(String name) |
Deprecated.
|
NativeQuery |
QueryProducer.getNamedNativeQuery(String name,
String resultSetMapping) |
Deprecated.
|
NativeQuery<T> |
NativeQuery.setCacheable(boolean cacheable) |
|
NativeQuery<T> |
NativeQuery.setCacheMode(CacheMode cacheMode) |
|
NativeQuery<T> |
NativeQuery.setCacheRegion(String cacheRegion) |
|
NativeQuery<T> |
NativeQuery.setCacheRetrieveMode(CacheRetrieveMode cacheRetrieveMode) |
|
NativeQuery<T> |
NativeQuery.setCacheStoreMode(CacheStoreMode cacheStoreMode) |
|
NativeQuery<T> |
NativeQuery.setComment(String comment) |
|
NativeQuery<T> |
NativeQuery.setFetchSize(int fetchSize) |
|
NativeQuery<T> |
NativeQuery.setFirstResult(int startPosition) |
|
NativeQuery<T> |
NativeQuery.setFlushMode(FlushModeType flushMode) |
|
NativeQuery<T> |
NativeQuery.setHibernateFlushMode(FlushMode flushMode) |
|
NativeQuery<T> |
NativeQuery.setHibernateLockMode(LockMode lockMode) |
|
NativeQuery<T> |
NativeQuery.setHint(String hintName,
Object value) |
|
NativeQuery<T> |
NativeQuery.setLockMode(LockModeType lockMode) |
Not applicable to native SQL queries, due to an unfortunate
requirement of the JPA specification.
|
NativeQuery<T> |
NativeQuery.setLockMode(String alias,
LockMode lockMode) |
Not applicable to native SQL queries.
|
NativeQuery<T> |
NativeQuery.setLockOptions(LockOptions lockOptions) |
|
NativeQuery<T> |
NativeQuery.setMaxResults(int maxResult) |
|
NativeQuery<T> |
NativeQuery.setParameter(int position,
Object value) |
|
NativeQuery<T> |
NativeQuery.setParameter(int position,
Instant value,
TemporalType temporalType) |
|
NativeQuery<T> |
NativeQuery.setParameter(int position,
Calendar value,
TemporalType temporalType) |
|
NativeQuery<T> |
NativeQuery.setParameter(int position,
Date value,
TemporalType temporalType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(int position,
P val,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(int position,
P val,
BindableType<P> type) |
|
NativeQuery<T> |
NativeQuery.setParameter(Parameter<Calendar> param,
Calendar value,
TemporalType temporalType) |
|
NativeQuery<T> |
NativeQuery.setParameter(Parameter<Date> param,
Date value,
TemporalType temporalType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(Parameter<P> param,
P value) |
|
NativeQuery<T> |
NativeQuery.setParameter(String name,
Object value) |
|
NativeQuery<T> |
NativeQuery.setParameter(String name,
Instant value,
TemporalType temporalType) |
|
NativeQuery<T> |
NativeQuery.setParameter(String name,
Calendar value,
TemporalType temporalType) |
|
NativeQuery<T> |
NativeQuery.setParameter(String name,
Date value,
TemporalType temporalType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(String name,
P val,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(String name,
P val,
BindableType<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(QueryParameter<P> parameter,
P val) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(QueryParameter<P> parameter,
P val,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameter(QueryParameter<P> parameter,
P val,
BindableType<P> type) |
|
NativeQuery<T> |
NativeQuery.setParameterList(int position,
Object[] values) |
|
NativeQuery<T> |
NativeQuery.setParameterList(int position,
Collection values) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(int position,
Collection<? extends P> values,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(int position,
Collection<? extends P> values,
BindableType<P> javaType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(int position,
P[] values,
Class<P> javaType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(int position,
P[] values,
BindableType<P> javaType) |
|
NativeQuery<T> |
NativeQuery.setParameterList(String name,
Object[] values) |
|
NativeQuery<T> |
NativeQuery.setParameterList(String name,
Collection values) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(String name,
Collection<? extends P> values,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(String name,
Collection<? extends P> values,
BindableType<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(String name,
P[] values,
Class<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(String name,
P[] values,
BindableType<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> values) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> values,
Class<P> javaType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
Collection<? extends P> values,
BindableType<P> type) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
P[] values) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
P[] values,
Class<P> javaType) |
|
<P> NativeQuery<T> |
NativeQuery.setParameterList(QueryParameter<P> parameter,
P[] values,
BindableType<P> type) |
|
NativeQuery<T> |
NativeQuery.setProperties(Object bean) |
|
NativeQuery<T> |
NativeQuery.setProperties(Map bean) |
|
NativeQuery<T> |
NativeQuery.setReadOnly(boolean readOnly) |
|
NativeQuery<T> |
NativeQuery.setResultListTransformer(ResultListTransformer<T> transformer) |
|
<S> NativeQuery<S> |
NativeQuery.setResultTransformer(ResultTransformer<S> transformer) |
Deprecated.
|
NativeQuery<T> |
NativeQuery.setTimeout(int timeout) |
|
<R> NativeQuery<R> |
NativeQuery.setTupleTransformer(TupleTransformer<R> transformer) |
|