Example usage for org.hibernate.usertype EnhancedUserType interface-usage

List of usage examples for org.hibernate.usertype EnhancedUserType interface-usage

Introduction

In this page you can find the example usage for org.hibernate.usertype EnhancedUserType interface-usage.

Usage

From source file org.tsm.concharto.model.geometry.GeometryUserType.java

public class GeometryUserType implements EnhancedUserType {

    /**
     * Return the SQL type codes for the columns mapped by this type. The codes
     * are defined on <tt>java.sql.Types</tt>.
     * 

From source file org.yamj.core.hibernate.usertypes.EnumIntUserType.java

/**
 * User type for enumerations.
 * <p>
 * Example Mapping: inline typedef<br>
 * <code>
 * &lt;property name=&quot;suit&quot;&gt;

From source file org.yestech.lib.hibernate.PersistentUUID.java

/**
 * @author Artie Copeland
 * @version $Revision: $
 */
public class PersistentUUID implements EnhancedUserType {

From source file to.etc.domui.hibernate.types.Enum5Type.java

/**
 * Java 5 Hibernate enum type. Coded because the XML variant of Hibernate does not
 * know about Java enum's. Good work, guys 8-( - it's 2009 now.
 *
 * @author <a href="mailto:jal@etc.to">Frits Jalvingh</a>
 * Created on May 1, 2009

From source file ubic.gemma.model.analysis.expression.diff.DirectionEnum.java

/**
 * <p>
 * Represents the direction of a change e.g. in expression. "Either" is needed because a gene/probe could be changed in
 * two directions with respect to different conditions.
 * </p>
 */

From source file ubic.gemma.model.association.GOEvidenceCodeEnum.java

/**
 * This enumeration was originally based on GO, but is used for all
 * entities that have evidenciary aspects; Thus it has been expanded to
 * include:
 * <ul>
 * <li>Terms from RGD&#160;(rat genome database)</li>

From source file ubic.gemma.model.association.phenotype.PhenotypeMappingType.java

/**
 * represents an enum of evidence mapping type, copied logic of GOEvidenceCodeEnum
 */
public class PhenotypeMappingType
        implements java.io.Serializable, Comparable<PhenotypeMappingType>, org.hibernate.usertype.EnhancedUserType {

From source file ubic.gemma.model.common.auditAndSecurity.AuditActionEnum.java

public final class AuditActionEnum extends AuditAction implements org.hibernate.usertype.EnhancedUserType {
    /**
     * The serial version UID of this class. Needed for serialization.
     */
    private static final long serialVersionUID = 4628458718626475444L;
    private static final int[] SQL_TYPES = { Types.VARCHAR };

From source file ubic.gemma.model.common.description.DatabaseTypeEnum.java

public final class DatabaseTypeEnum extends DatabaseType implements org.hibernate.usertype.EnhancedUserType {
    /**
     * The serial version UID of this class. Needed for serialization.
     */
    private static final long serialVersionUID = 3701187744112944950L;
    private static final int[] SQL_TYPES = { Types.VARCHAR };

From source file ubic.gemma.model.common.measurement.MeasurementKindEnum.java

public final class MeasurementKindEnum extends MeasurementKind implements org.hibernate.usertype.EnhancedUserType {
    /**
     * The serial version UID of this class. Needed for serialization.
     */
    private static final long serialVersionUID = 7640193836825779342L;
    private static final int[] SQL_TYPES = { Types.VARCHAR };