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

📄 enhancedusertype.java

📁 一个Java持久层类库
💻 JAVA
字号:
//$Id: EnhancedUserType.java 5956 2005-02-28 06:07:06Z oneovthafew $package org.hibernate.usertype;/** * A custom type that may function as an identifier or * discriminator type, or may be marshalled to and from * an XML document *  * @author Gavin King */public interface EnhancedUserType extends UserType {	/**	 * Return an SQL literal representation of the value	 */	public String objectToSQLString(Object value);		/**	 * Return a string representation of this value, as it	 * should appear in an XML document	 */	public String toXMLString(Object value);	/**	 * Parse a string representation of this value, as it	 * appears in an XML document	 */	public Object fromXMLString(String xmlValue);}

⌨️ 快捷键说明

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