Example usage for org.hibernate.type AbstractType subclass-usage

List of usage examples for org.hibernate.type AbstractType subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.type AbstractType subclass-usage.

Usage

From source file org.eclipse.emf.teneo.hibernate.mapping.AnyEObjectType.java

/**
 * Supports persisting the reference to any persistable EObect, it stores the
 * entity name, and the id in a string field
 * 
 * @author <a href="mailto:mkanaley@tibco.com">Mike Kanaley</a>
 */

From source file org.eclipse.emf.teneo.hibernate.mapping.econtainer.EContainerUserType.java

/**
 * Implements the EMF UserType for an Enum
 * 
 * @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
 * @version $Revision: 1.13 $ $Date: 2010/11/12 09:33:33 $
 */

From source file org.riotfamily.common.hibernate.AnyIdAnyType.java

public class AnyIdAnyType extends AbstractType implements CompositeType, AssociationType {

    private static final int[] SQL_TYPES = new int[] { StandardBasicTypes.STRING.sqlType(),
            StandardBasicTypes.STRING.sqlType() };

    private static final Type[] TYPES = new Type[] { StandardBasicTypes.STRING, StandardBasicTypes.STRING };

From source file org.riotfamily.common.hibernate.ImmutableAnyType.java

public class ImmutableAnyType extends AbstractType {

    public static final Type INSTANCE = new ImmutableAnyType();

    private static final int[] SQL_TYPES = new int[] { Hibernate.STRING.sqlType(), Hibernate.STRING.sqlType() };

From source file us.mn.state.health.lims.hibernate.resources.usertype.LIMSRawDataUserType.java

/**
 * <tt>blob</tt>: A type that maps an SQL BLOB to a java.sql.Blob.
 * @author Gavin King
 */
public class LIMSRawDataUserType extends AbstractType {