Package org.hibernate.annotations
Annotation Type SortNatural
-
@Target({METHOD,FIELD}) @Retention(RUNTIME) public @interface SortNatural
Sort aSetorMapin itsnatural orderSorting is performed in memory, by Java's
TreeSetorTreeMap, and is maintained by any operation that mutates the collection.- Use
SortComparatorto sort the collection in memory using aComparator. - Use
OrderByto order using an expression written in HQL. - Use
OrderByto order using an expression written in native SQL.
It is illegal to use both
SortNaturalandSortComparator.- See Also:
SortComparator,OrderBy,OrderBy
- Use