All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladmihalcea.hibernate.type.basic.PostgreSQLEnumJdbcType Maven / Gradle / Ivy

There is a newer version: 2.21.1
Show newest version
package com.vladmihalcea.hibernate.type.basic;

import org.hibernate.dialect.PostgreSQLPGObjectJdbcType;
import org.hibernate.type.SqlTypes;

/**
 * Maps an {@link Enum} to a PostgreSQL ENUM column type.
 * 

* For more details about how to use it, check out this article on vladmihalcea.com. * * @author Vlad Mihalcea */ public class PostgreSQLEnumJdbcType extends PostgreSQLPGObjectJdbcType { public PostgreSQLEnumJdbcType(String enumClass) { super(enumClass, SqlTypes.OTHER); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy