Package org.hibernate.type

Examples of org.hibernate.type.AnyType


   *
   * @deprecated Use {@link TypeHelper#any} instead.
   */
  @SuppressWarnings({ "JavaDoc", "UnusedDeclaration" })
  public static Type any(Type metaType, Type identifierType) {
    return new AnyType( metaType, identifierType );
  }
View Full Code Here


   * @param metaType       a type mapping <tt>java.lang.Class</tt> to a single column
   * @param identifierType the entity identifier type
   * @return the Type
   */
  public static Type any(Type metaType, Type identifierType) {
    return new AnyType( metaType, identifierType );
  }
View Full Code Here

   *
   * @deprecated Use {@link TypeHelper#any} instead.
   */
  @SuppressWarnings({ "JavaDoc", "UnusedDeclaration" })
  public static Type any(Type metaType, Type identifierType) {
    return new AnyType( metaType, identifierType );
  }
View Full Code Here

   *
   * @deprecated Use {@link TypeHelper#any} instead.
   */
  @SuppressWarnings({ "JavaDoc", "UnusedDeclaration" })
  public static Type any(Type metaType, Type identifierType) {
    return new AnyType( metaType, identifierType );
  }
View Full Code Here

   * @return the Type
   *
   * @deprecated see http://opensource.atlassian.com/projects/hibernate/browse/HHH-5182
   */
  public static Type any(Type metaType, Type identifierType) {
    return new AnyType( metaType, identifierType );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.type.AnyType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.