⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flushmodetype.java

📁 hibernate3.2.6源码和jar包
💻 JAVA
字号:
package org.hibernate.annotations;/** * Enumeration extending javax.persistence flush modes. * * @author Carlos Gonz醠ez-Cadenas */public enum FlushModeType {	/**	 * see {@link org.hibernate.FlushMode.ALWAYS}	 */	ALWAYS,	/**	 * see {@link org.hibernate.FlushMode.AUTO}	 */	AUTO,	/**	 * see {@link org.hibernate.FlushMode.COMMIT}	 */	COMMIT,	/**	 * see {@link org.hibernate.FlushMode.NEVER}	 * @deprecated use MANUAL, will be removed in a subsequent release	 */	NEVER,	/**	 * see {@link org.hibernate.FlushMode.MANUAL}	 */	MANUAL,	/**	 * Current flush mode of the persistence context at the time the query is executed	 */	PERSISTENCE_CONTEXT}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -