Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: SortType.java 11282 2007-03-14 22:05:59Z epbernard $
2
package org.hibernate.annotations;
3
 
4
/**
5
 * Sort strategies
6
 *
7
 * @author Emmanuel Bernard
8
 */
9
public enum SortType {
10
        UNSORTED,
11
        NATURAL,
12
        COMPARATOR
13
}