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

📄 replicationmode.java

📁 hibernate 开源框架的代码 jar包希望大家能喜欢
💻 JAVA
字号:
//$Id: ReplicationMode.java 5060 2004-12-24 03:11:05Z oneovthafew $package org.hibernate;import java.io.Serializable;import java.util.HashMap;import java.util.Map;import org.hibernate.type.VersionType;/** * Represents a replication strategy. * * @see Session#replicate(Object, ReplicationMode) * @author Gavin King */public abstract class ReplicationMode implements Serializable {	private final String name;	private static final Map INSTANCES = new HashMap();	public ReplicationMode(String name) {		this.name=name;	}	public String toString() {		return name;	}	public abstract boolean shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType);	/**	 * Throw an exception when a row already exists.	 */	public static final ReplicationMode EXCEPTION = new ReplicationMode("EXCEPTION") {		public boolean shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType) {			throw new AssertionFailure("should not be called");		}	};	/**	 * Ignore replicated entities when a row already exists.	 */	public static final ReplicationMode IGNORE = new ReplicationMode("IGNORE") {		public boolean shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType) {			return false;		}	};	/**	 * Overwrite existing rows when a row already exists.	 */	public static final ReplicationMode OVERWRITE = new ReplicationMode("OVERWRITE") {		public boolean shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType) {			return true;		}	};	/**	 * When a row already exists, choose the latest version.	 */	public static final ReplicationMode LATEST_VERSION = new ReplicationMode("LATEST_VERSION") {		public boolean shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType) {			if (versionType==null) return true; //always overwrite nonversioned data			return versionType.getComparator().compare(currentVersion, newVersion) <= 0;		}	};	static {		INSTANCES.put( LATEST_VERSION.name, LATEST_VERSION );		INSTANCES.put( IGNORE.name, IGNORE );		INSTANCES.put( OVERWRITE.name, OVERWRITE );		INSTANCES.put( EXCEPTION.name, EXCEPTION );	}	private Object readResolve() {		return INSTANCES.get(name);	}}

⌨️ 快捷键说明

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