<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createNamedQuery(String queryName,
Class<R> resultType) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createNamedQuery(String queryName,
Class<R> resultType) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createNativeQuery(String queryString,
Class<R> resultType) |
Create an instance of Mutiny.SelectionQuery for the given SQL query
string, using the given resultType to interpret the results.
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createNativeQuery(String queryString,
Class<R> resultType,
AffectedEntities affectedEntities) |
Create an instance of Mutiny.SelectionQuery for the given SQL query
string, using the given resultType to interpret the results.
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createNativeQuery(String queryString,
ResultSetMapping<R> resultSetMapping) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createNativeQuery(String queryString,
ResultSetMapping<R> resultSetMapping,
AffectedEntities affectedEntities) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createNativeQuery(String queryString,
Class<R> resultType) |
Create an instance of Mutiny.SelectionQuery for the given SQL query
string, using the given resultType to interpret the results.
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createNativeQuery(String queryString,
ResultSetMapping<R> resultSetMapping) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createQuery(jakarta.persistence.criteria.CriteriaQuery<R> criteriaQuery) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createQuery(String queryString,
Class<R> resultType) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createQuery(jakarta.persistence.criteria.CriteriaQuery<R> criteriaQuery) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createQuery(String queryString,
Class<R> resultType) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.Session.createSelectionQuery(String queryString,
Class<R> resultType) |
|
<R> Mutiny.SelectionQuery<R> |
Mutiny.StatelessSession.createSelectionQuery(String queryString,
Class<R> resultType) |
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.enableFetchProfile(String profileName) |
Enable a fetch
profile which will be in effect during execution of this query.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setCacheable(boolean cacheable) |
Enable or disable caching of this query result set in the
second-level query cache.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setCacheMode(CacheMode cacheMode) |
Set the current CacheMode in effect while this query
is being executed.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setCacheRegion(String cacheRegion) |
Set the name of the cache region in which to store this
query result set if caching is enabled .
|
default Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setCacheRetrieveMode(jakarta.persistence.CacheRetrieveMode cacheRetrieveMode) |
Set the current CacheRetrieveMode in effect while this query
is being executed.
|
default Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setCacheStoreMode(jakarta.persistence.CacheStoreMode cacheStoreMode) |
Set the current CacheStoreMode in effect while this query
is being executed.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setComment(String comment) |
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setFirstResult(int firstResult) |
Set the position of the first result that may be returned by
this query when executed, where the results are numbered from
0.
|
default Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setFlushMode(jakarta.persistence.FlushModeType flushModeType) |
Set the current FlushModeType in effect while this query is
being executed.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setFlushMode(FlushMode flushMode) |
Set the current FlushMode in effect while this query is
being executed.
|
default Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setLockMode(jakarta.persistence.LockModeType lockModeType) |
Set the LockModeType to use for the whole query.
|
default Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setLockMode(String alias,
jakarta.persistence.LockModeType lockModeType) |
Set the LockModeType to use for specified alias (as defined in
the query's from clause).
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setLockMode(String alias,
LockMode lockMode) |
Set the LockMode to use for specified alias (as defined in
the query's from clause).
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setLockMode(LockMode lockMode) |
Set the LockMode to use for the whole query.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setMaxResults(int maxResults) |
Set the maximum number of results that may be returned by this
query when executed.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setOrder(List<Order<? super R>> orderList) |
If the result type of this query is an entity class, add one or more
rules for ordering the query results.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setOrder(Order<? super R> order) |
If the result type of this query is an entity class, add a
rule for ordering the query results.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setPage(Page page) |
Set the page of results to return.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setParameter(int parameter,
Object argument) |
|
<T> Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setParameter(jakarta.persistence.Parameter<T> parameter,
T argument) |
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setParameter(String parameter,
Object argument) |
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setPlan(jakarta.persistence.EntityGraph<R> entityGraph) |
Set the EntityGraph that will be used as a fetch plan for
the root entity returned by this query.
|
Mutiny.SelectionQuery<R> |
Mutiny.SelectionQuery.setReadOnly(boolean readOnly) |
Set the read-only/modifiable mode for entities and proxies
loaded by this Query.
|