FileDocCategorySizeDatePackage
EnhancedUserType.javaAPI DocHibernate 3.2.5723Sun Feb 27 23:07:06 GMT 2005org.hibernate.usertype

EnhancedUserType.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);
}