KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > annotations > SortType


1 //$Id: SortType.java,v 1.1 2005/05/16 14:57:03 epbernard Exp $
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 }
14
Popular Tags