1 package org.hibernate.cfg; 2 3 /** 4 * Type of annotation of a class will give its type 5 * 6 * @author Emmanuel Bernard 7 */ 8 public enum AnnotatedClassType { 9 /**has no revelent top level annotation */ 10 NONE, 11 /** has @Entity annotation */ 12 ENTITY, 13 /** has a @Embeddable annotation */ 14 EMBEDDABLE, 15 /** has @EmbeddedSuperclass annotation */ 16 EMBEDDABLE_SUPERCLASS 17 } 18