Examples of AnyType


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

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

Examples of org.hibernate.type.AnyType

   * @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
Copyright © 2018 www.massapi.com. 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.