288289290291292293294
* * @deprecated Use {@link TypeHelper#any} instead. */ @SuppressWarnings({ "JavaDoc", "UnusedDeclaration" }) public static Type any(Type metaType, Type identifierType) { return new AnyType( metaType, identifierType ); }
245246247248249250251
* @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 ); }
287288289290291292293
297298299300301302303
332333334335336337338
* @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 ); }