1 //$Id: PolymorphismType.java,v 1.1 2005/02/13 16:50:54 epbernard Exp $ 2 package org.hibernate.annotations; 3 4 /** 5 * Type of avaliable polymorphism for a particular entity 6 * @author Emmanuel Bernard 7 */ 8 public enum PolymorphismType { 9 /** default, this entity is retrieved if any of its super entity is asked */ 10 IMPLICIT, 11 /** this entity is retrived only if explicitly asked */ 12 EXPLICIT 13 }