Subversion Repositories WebE

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 PointedEar 1
//$Id: PolymorphismType.java 11282 2007-03-14 22:05:59Z epbernard $
2
package org.hibernate.annotations;
3
 
4
/**
5
 * Type of avaliable polymorphism for a particular entity
6
 *
7
 * @author Emmanuel Bernard
8
 */
9
public enum PolymorphismType {
10
        /**
11
         * default, this entity is retrieved if any of its super entity is asked
12
         */
13
        IMPLICIT,
14
        /**
15
         * this entity is retrived only if explicitly asked
16
         */
17
        EXPLICIT
18
}