类 QueryParameterImpl<T>
- java.lang.Object
-
- org.hibernate.query.internal.QueryParameterImpl<T>
-
- 所有已实现的接口:
javax.persistence.Parameter<T>,QueryParameter<T>
public abstract class QueryParameterImpl<T> extends Object implements QueryParameter<T>
QueryParameter implementation. NOTE: Unfortunately we need to model named and positional parameters separately still until 6.0. For now this is simply the base abstract class for those specific impls- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 QueryParameterImpl(Type expectedType)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 TypegetHibernateType()Get the Hibernate Type associated with this parameter.Class<T>getParameterType()voidsetHibernateType(Type expectedType)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.query.QueryParameter
getSourceLocations
-
-
-
-
构造器详细资料
-
QueryParameterImpl
public QueryParameterImpl(Type expectedType)
-
-
方法详细资料
-
getHibernateType
public Type getHibernateType()
从接口复制的说明:QueryParameterGet the Hibernate Type associated with this parameter.- 指定者:
getHibernateType在接口中QueryParameter<T>- 返回:
- The Hibernate Type.
-
setHibernateType
public void setHibernateType(Type expectedType)
-
-