Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: $
2
package org.hibernate.annotations;
3
 
4
/**
5
 * Lazy options available for a collection
6
 *
7
 * @author Emmanuel Bernard
8
 */
9
public enum LazyCollectionOption {
10
        /** eagerly load it */
11
        FALSE,
12
        /** load it when the state is requested */
13
        TRUE,
14
        /** prefer extra queries over fill collection loading */
15
        EXTRA
16
}