enhancedusertype.java
来自「hibernate-3.0.5 中文文档」· Java 代码 · 共 28 行
JAVA
28 行
//$Id: EnhancedUserType.java,v 1.4 2005/02/28 06:07:06 oneovthafew Exp $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 + =
减小字号Ctrl + -
显示快捷键?