/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate;

import java.util.Properties;

import org.hibernate.type.BasicType;
import org.hibernate.type.Type;

Provides access to the various Type instances associated with the SessionFactory.

This is intended for use by application developers.
Author:Steve Ebersole
/** * Provides access to the various {@link Type} instances associated with the {@link SessionFactory}. * <p/> * This is intended for use by application developers. * * @author Steve Ebersole */
public interface TypeHelper { // todo : deprecate all these BasicType methods with overloaded forms taking: // * Java type // * Converter // * Java type + sql-type indicator (type code/SqlTypeDescriptor)
Retrieve the basic type registered against the given name.
Params:
  • name – The name of the basic type to retrieve
Returns:The basic type, or null.
/** * Retrieve the basic type registered against the given name. * * @param name The name of the basic type to retrieve * * @return The basic type, or null. */
public BasicType basic(String name);
Convenience form of basic(String). The intended use of this is something like basic(Integer.class) or basic(int.class)
Params:
  • javaType – The java type for which to retrieve the type instance.
Returns:The basic type, or null.
/** * Convenience form of {@link #basic(String)}. The intended use of this is something like * {@code basic(Integer.class)} or {@code basic(int.class)} * * @param javaType The java type for which to retrieve the type instance. * * @return The basic type, or null. */
public BasicType basic(Class javaType);
Uses heuristics to deduce the proper Type given a string naming the type or Java class.

See TypeResolver.heuristicType(String) for a discussion of the heuristic algorithm.
Params:
  • name – The name of the type or Java class
See Also:
Returns:The deduced type, or null.
/** * Uses heuristics to deduce the proper {@link Type} given a string naming the type or Java class. * <p/> * See {@link org.hibernate.type.TypeResolver#heuristicType(java.lang.String)} for a discussion of the * heuristic algorithm. * * @param name The name of the type or Java class * * @return The deduced type, or null. * * @see org.hibernate.type.TypeResolver#heuristicType(java.lang.String) */
public Type heuristicType(String name);
Retrieve a type representing the given entity.
Params:
  • entityClass – The entity Java type.
Returns:The type, or null
/** * Retrieve a type representing the given entity. * * @param entityClass The entity Java type. * * @return The type, or null */
public Type entity(Class entityClass);
Retrieve a type representing the given entity.
Params:
  • entityName – The entity name.
Returns:The type, or null
/** * Retrieve a type representing the given entity. * * @param entityName The entity name. * * @return The type, or null */
public Type entity(String entityName);
Retrieve the type for the given user-type class (UserType or CompositeUserType).
Params:
  • userTypeClass – The user type class
Returns:The type, or null
/** * Retrieve the type for the given user-type class ({@link org.hibernate.usertype.UserType} or * {@link org.hibernate.usertype.CompositeUserType}). * * @param userTypeClass The user type class * * @return The type, or null */
public Type custom(Class userTypeClass);
Retrieve the type for the given user-type class (UserType or CompositeUserType).
Params:
  • userTypeClass – The user type class
  • properties – Configuration properties.
Returns:The type, or null
/** * Retrieve the type for the given user-type class ({@link org.hibernate.usertype.UserType} or * {@link org.hibernate.usertype.CompositeUserType}). * * @param userTypeClass The user type class * @param properties Configuration properties. * * @return The type, or null */
public Type custom(Class userTypeClass, Properties properties);
Retrieve the type representing an ANY mapping.
Params:
  • metaType – The meta type for the ANY
  • identifierType – The identifier type for the ANY
Returns:The type, or null
/** * Retrieve the type representing an ANY mapping. * * @param metaType The meta type for the ANY * @param identifierType The identifier type for the ANY * * @return The type, or null */
public Type any(Type metaType, Type identifierType); }