Uses of Class
org.hibernate.criterion.Order
-
Packages that use Order Package Description org.hibernate org.hibernate.criterion -
-
Uses of Order in org.hibernate
Methods in org.hibernate with parameters of type Order Modifier and Type Method Description Criteria
Criteria. addOrder(Order order)
Add anordering
to the result set. -
Uses of Order in org.hibernate.criterion
Methods in org.hibernate.criterion that return Order Modifier and Type Method Description static Order
Order. asc(java.lang.String propertyName)
Ascending orderOrder
Property. asc()
Creates an ascending ordering for this propertystatic Order
Order. desc(java.lang.String propertyName)
Descending order.Order
Property. desc()
Creates a descending ordering for this propertyOrder
Order. ignoreCase()
Should this ordering ignore case? Has no effect on non-character properties.Order
Order. nulls(NullPrecedence nullPrecedence)
Defines precedence for nulls.Methods in org.hibernate.criterion with parameters of type Order Modifier and Type Method Description DetachedCriteria
DetachedCriteria. addOrder(Order order)
Adds an ordering
-