List of usage examples for org.hibernate.usertype UserType interface-usage
From source file com.flipkart.flux.type.BlobType.java
/** * <code>BlobType</code> is a Hibernate {@link UserType} implementation to store object as byte array in DB * @author shyam.akirala */ public class BlobType implements UserType, Serializable { @Override
From source file com.flipkart.flux.type.ListJsonType.java
/** * <code>ListJsonType</code> is a Hibernate {@link UserType} implementation to store {@link java.util.List} as json in DB * @author shyam.akirala */ public class ListJsonType implements UserType, Serializable {
From source file com.flipkart.flux.type.SetJsonType.java
/** * <code>SetJsonType</code> is a Hibernate {@link UserType} implementation to store {@link java.util.Set} as json in DB * @author shyam.akirala */ public class SetJsonType implements UserType, Serializable {
From source file com.flipkart.flux.type.StoreFQNType.java
/** * <code>StoreFQNType</code> is a Hibernate {@link UserType} implementation to store class FQN of an object in DB * @author shyam.akirala */ public class StoreFQNType implements UserType, Serializable { @Override
From source file com.floreantpos.model.EnumUserType.java
public class EnumUserType implements UserType, ParameterizedType { private Class clazz = null; public void setParameterValues(Properties params) { String enumClassName = params.getProperty("enumClassName"); //$NON-NLS-1$
From source file com.formkiq.core.domain.type.StringJsonUserType.java
/** * @author timfulmer */ public class StringJsonUserType implements UserType { /**
From source file com.ge.current.innovation.storage.jpa.boot.FeatureCollectionGeoJsonUserType.java
/** * * @author lordoftheflies */ public class FeatureCollectionGeoJsonUserType implements UserType {
From source file com.ge.current.innovation.storage.jpa.boot.FeatureGeoJsonUserType.java
/** * * @author lordoftheflies */ public class FeatureGeoJsonUserType implements UserType {
From source file com.ge.lighting.innovation.persistence.ext.hibernate.json.PgGeoJsonFeature.java
/** * * @author predix */ @XmlRootElement(name = "Feature") @JsonTypeName(value = "Feature")
From source file com.ge.lighting.innovation.persistence.ext.hibernate.json.PgGeoJsonFeatureCollection.java
/** * * @author predix */ @XmlRootElement(name = "FeatureCollection") @JsonTypeName(value = "FeatureCollection")