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

📄 flushmode.java

📁 人力资源管理系统主要包括:人员管理、招聘管理、培训管理、奖惩管理和薪金管理五大管理模块。
💻 JAVA
字号:
//$Id: FlushMode.java,v 1.6 2003/06/15 12:45:04 oneovthafew Exp $package net.sf.hibernate;import java.io.Serializable;import java.util.HashMap;import java.util.Map;/** * Represents a flushing strategy. The flush process synchronizes * database state with session state by detecting state changes * and executing SQL statements. * * @see Session#setFlushMode(FlushMode) * @author Gavin King */public final class FlushMode implements Serializable {	private final int level;	private final String name;	private static final Map INSTANCES = new HashMap();		private FlushMode(int level, String name) {		this.level=level;		this.name=name;	}	public String toString() {		return name;	}	/**	 * The <tt>Session</tt> is never flushed unless <tt>flush()</tt>	 * is explicitly called by the application. This mode is very	 * efficient for read only transactions.	 */	public static final FlushMode NEVER = new FlushMode(0, "NEVER");	/**	 * The <tt>Session</tt> is flushed when <tt>Transaction.commit()</tt>	 * is called.	 */	public static final FlushMode COMMIT = new FlushMode(5, "COMMIT");	/**	 * The <tt>Session</tt> is sometimes flushed before query execution	 * in order to ensure that queries never return stale state. This	 * is the default flush mode.	 */	public static final FlushMode AUTO = new FlushMode(10, "AUTO");		static {		INSTANCES.put( new Integer(NEVER.level), NEVER );		INSTANCES.put( new Integer(AUTO.level), AUTO );		INSTANCES.put( new Integer(COMMIT.level), COMMIT );	}		private Object readResolve() {		return INSTANCES.get( new Integer(level) );	}	}

⌨️ 快捷键说明

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