annotatedclasstype.java
来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 26 行
JAVA
26 行
package org.hibernate.cfg;/** * Type of annotation of a class will give its type * * @author Emmanuel Bernard */public enum AnnotatedClassType { /** * has no revelent top level annotation */ NONE, /** * has @Entity annotation */ ENTITY, /** * has a @Embeddable annotation */ EMBEDDABLE, /** * has @EmbeddedSuperclass annotation */ EMBEDDABLE_SUPERCLASS}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?