接口 ImplicitParameterBinding
-
public interface ImplicitParameterBindingUsed to describe implicit (not defined in criteria query) parameters.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidbind(javax.persistence.TypedQuery typedQuery)Bind the implicit parameter's value to the JPA query.ClassgetJavaType()Get the java type of the "thing" that led to the implicit parameter.StringgetParameterName()Retrieve the generated name of the implicit parameter.
-
-
-
方法详细资料
-
getParameterName
String getParameterName()
Retrieve the generated name of the implicit parameter.- 返回:
- The parameter name.
-
getJavaType
Class getJavaType()
Get the java type of the "thing" that led to the implicit parameter. Used fromHibernateEntityManagerImplementor.QueryOptions.getNamedParameterExplicitTypes()in determining "guessed type" overriding.- 返回:
- The java type
-
bind
void bind(javax.persistence.TypedQuery typedQuery)
Bind the implicit parameter's value to the JPA query.- 参数:
typedQuery- The JPA query.
-
-