接口 ImplicitParameterBinding


  • public interface ImplicitParameterBinding
    Used to describe implicit (not defined in criteria query) parameters.
    作者:
    Steve Ebersole
    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      void bind​(javax.persistence.TypedQuery typedQuery)
      Bind the implicit parameter's value to the JPA query.
      Class getJavaType()
      Get the java type of the "thing" that led to the implicit parameter.
      String getParameterName()
      Retrieve the generated name of the implicit parameter.
    • 方法详细资料

      • getParameterName

        String getParameterName()
        Retrieve the generated name of the implicit parameter.
        返回:
        The parameter name.
      • bind

        void bind​(javax.persistence.TypedQuery typedQuery)
        Bind the implicit parameter's value to the JPA query.
        参数:
        typedQuery - The JPA query.