| Package | Description |
|---|---|
| javax.persistence.criteria | |
| org.hibernate.ejb.criteria |
| Modifier and Type | Method and Description |
|---|---|
Order |
CriteriaBuilder.asc(Expression<?> x)
Create an ordering by the ascending value of the expression.
|
Order |
CriteriaBuilder.desc(Expression<?> x)
Create an ordering by the descending value of the expression.
|
Order |
Order.reverse()
Switch the ordering.
|
| Modifier and Type | Method and Description |
|---|---|
List<Order> |
CriteriaQuery.getOrderList()
Return the ordering expressions in order of precedence.
|
| Modifier and Type | Method and Description |
|---|---|
CriteriaQuery<T> |
CriteriaQuery.orderBy(Order... o)
Specify the ordering expressions that are used to
order the query results.
|
| Modifier and Type | Method and Description |
|---|---|
CriteriaQuery<T> |
CriteriaQuery.orderBy(List<Order> o)
Specify the ordering expressions that are used to
order the query results.
|
| Modifier and Type | Class and Description |
|---|---|
class |
OrderImpl
Represents an ORDER BY fragment.
|
| Modifier and Type | Method and Description |
|---|---|
Order |
CriteriaBuilderImpl.asc(Expression<?> x)
Create an ordering by the ascending value of the expression.
|
Order |
CriteriaBuilderImpl.desc(Expression<?> x)
Create an ordering by the descending value of the expression.
|
Order |
OrderImpl.reverse() |
| Modifier and Type | Method and Description |
|---|---|
List<Order> |
CriteriaQueryImpl.getOrderList()
Return the ordering expressions in order of precedence.
|
| Modifier and Type | Method and Description |
|---|---|
CriteriaQuery<T> |
CriteriaQueryImpl.orderBy(Order... orders)
Specify the ordering expressions that are used to
order the query results.
|
| Modifier and Type | Method and Description |
|---|---|
CriteriaQuery<T> |
CriteriaQueryImpl.orderBy(List<Order> orders)
Specify the ordering expressions that are used to
order the query results.
|
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.