Package org.hibernate.dialect
Class PgJdbcHelper
- java.lang.Object
-
- org.hibernate.dialect.PgJdbcHelper
-
public final class PgJdbcHelper extends Object
The following class provides some convenience methods for accessing JdbcType instance, that are loaded into the app class loader, where they have access to the JDBC driver classes.
-
-
Constructor Summary
Constructors Constructor Description PgJdbcHelper()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JdbcType
createJdbcType(ServiceRegistry serviceRegistry, String className)
static JdbcType
getInetJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
getIntervalJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
getJsonbJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
getJsonJdbcType(ServiceRegistry serviceRegistry)
static JdbcType
getStructJdbcType(ServiceRegistry serviceRegistry)
static boolean
isUsable(ServiceRegistry serviceRegistry)
-
-
-
Method Detail
-
isUsable
public static boolean isUsable(ServiceRegistry serviceRegistry)
-
getStructJdbcType
public static JdbcType getStructJdbcType(ServiceRegistry serviceRegistry)
-
getIntervalJdbcType
public static JdbcType getIntervalJdbcType(ServiceRegistry serviceRegistry)
-
getInetJdbcType
public static JdbcType getInetJdbcType(ServiceRegistry serviceRegistry)
-
getJsonJdbcType
public static JdbcType getJsonJdbcType(ServiceRegistry serviceRegistry)
-
getJsonbJdbcType
public static JdbcType getJsonbJdbcType(ServiceRegistry serviceRegistry)
-
createJdbcType
public static JdbcType createJdbcType(ServiceRegistry serviceRegistry, String className)
-
-