| Package | Description |
|---|---|
| org.ibatis.persist | |
| org.ibatis.persist.criteria | |
| org.ibatis.spring |
| Modifier and Type | Method and Description |
|---|---|
<T> List<T> |
EntityManager.executeQuery(CriteriaQuery<T> criteriaQuery)
Query the object list by the CriteriaQuery object.
|
<T> List<T> |
EntityManager.executeQuery(CriteriaQuery<T> criteriaQuery,
int startPosition,
int maxResult)
Query the object list by the CriteriaQuery object.
|
<T> T |
EntityManager.executeQueryObject(CriteriaQuery<T> criteriaQuery)
Query the first object by the CriteriaQuery object.
|
<T> int |
EntityManager.executeQueryPage(CriteriaQuery<T> criteriaQuery,
List<T> page,
int startPosition,
int maxResult)
Query the object list by the CriteriaQuery object and fill into page
|
| Modifier and Type | Method and Description |
|---|---|
<T> CriteriaQuery<T> |
CriteriaBuilder.createQuery(Class<T> resultClass)
Create a
CriteriaQuery object with the specified result
type. |
CriteriaQuery<T> |
CriteriaQuery.distinct(boolean distinct)
Specify whether duplicate query results will be eliminated.
|
CriteriaQuery<T> |
CriteriaQuery.groupBy(Expression<?>... grouping)
Specify the expressions that are used to form groups over the query results.
|
CriteriaQuery<T> |
CriteriaQuery.groupBy(List<Expression<?>> grouping)
Specify the expressions that are used to form groups over the query results.
|
CriteriaQuery<T> |
CriteriaQuery.having(Expression<Boolean> restriction)
Specify a restriction over the groups of the query.
|
CriteriaQuery<T> |
CriteriaQuery.having(Predicate... restrictions)
Specify restrictions over the groups of the query according the conjunction of the specified restriction
predicates.
|
CriteriaQuery<T> |
CriteriaQuery.multiselect(List<Selection<?>> selectionList)
Specify the selection items that are to be returned in the query result.
|
CriteriaQuery<T> |
CriteriaQuery.multiselect(Selection<?>... selections)
Specify the selection items that are to be returned in the query result.
|
CriteriaQuery<T> |
CriteriaQuery.orderBy(List<Order> o)
Specify the ordering expressions that are used to order the query results.
|
CriteriaQuery<T> |
CriteriaQuery.orderBy(Order... o)
Specify the ordering expressions that are used to order the query results.
|
CriteriaQuery<T> |
CriteriaQuery.select(Selection<? extends T> selection)
Specify the item that is to be returned in the query result.
|
CriteriaQuery<T> |
CriteriaQuery.where(Expression<Boolean> restriction)
Modify the query to restrict the query result according to the specified boolean expression.
|
CriteriaQuery<T> |
CriteriaQuery.where(Predicate... restrictions)
Modify the query to restrict the query result according to the conjunction of the specified restriction
predicates.
|
| Modifier and Type | Method and Description |
|---|---|
<T> List<T> |
SqlMapClientTemplate.executeQuery(CriteriaQuery<T> criteriaQuery) |
<T> List<T> |
SqlMapClientOperations.executeQuery(CriteriaQuery<T> criteriaQuery)
Query the object list by the CriteriaQuery object.
|
<T> List<T> |
SqlMapClientTemplate.executeQuery(CriteriaQuery<T> criteriaQuery,
int startPosition,
int maxResult) |
<T> List<T> |
SqlMapClientOperations.executeQuery(CriteriaQuery<T> criteriaQuery,
int startPosition,
int maxResult)
Query the object list by the CriteriaQuery object.
|
<T> T |
SqlMapClientTemplate.executeQueryObject(CriteriaQuery<T> criteriaQuery) |
<T> T |
SqlMapClientOperations.executeQueryObject(CriteriaQuery<T> criteriaQuery)
Query the first object by the CriteriaQuery object.
|
<T> int |
SqlMapClientTemplate.executeQueryPage(CriteriaQuery<T> criteriaQuery,
List<T> page,
int startPosition,
int maxResult) |
<T> int |
SqlMapClientOperations.executeQueryPage(CriteriaQuery<T> criteriaQuery,
List<T> page,
int startPosition,
int maxResult)
Query the object list by the CriteriaQuery object and fill into page
|
Copyright © 2084–2018 dukeware.com. All rights reserved.