接口 QueryParameterBinding<T>

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型 方法 说明
      Type getBindType()
      Get the Type currently associated with this binding.
      T getBindValue()
      Get the value current bound.
      boolean isBound()  
      void setBindValue​(T value)
      Sets the parameter binding value.
      void setBindValue​(T value, javax.persistence.TemporalType clarifiedTemporalType)
      Sets the parameter binding value using the explicit TemporalType.
      void setBindValue​(T value, Type clarifiedType)
      Sets the parameter binding value using the explicit Type.
    • 方法详细资料

      • isBound

        boolean isBound()
      • setBindValue

        void setBindValue​(T value)
        Sets the parameter binding value. The inherent parameter type (if known) is assumed
        参数:
        value - The bind value
      • setBindValue

        void setBindValue​(T value,
                          Type clarifiedType)
        Sets the parameter binding value using the explicit Type.
        参数:
        value - The bind value
        clarifiedType - The explicit Type to use
      • setBindValue

        void setBindValue​(T value,
                          javax.persistence.TemporalType clarifiedTemporalType)
        Sets the parameter binding value using the explicit TemporalType.
        参数:
        value - The bind value
        clarifiedTemporalType - The temporal type to use
      • getBindValue

        T getBindValue()
        Get the value current bound.
        返回:
        The currently bound value
      • getBindType

        Type getBindType()
        Get the Type currently associated with this binding.
        返回:
        The currently associated Type