//$Id: DiscriminatorType.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.type;
/**
* A <tt>Type</tt> that may be used for a discriminator column.
* @author Gavin King
*/
public interface DiscriminatorType extends IdentifierType, LiteralType {
}
|