flushmodetype.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 36 行

JAVA
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?