接口 NullTypeBindableParameterRegistration<T>

  • 所有超级接口:
    javax.persistence.Parameter<T>, ParameterRegistration<T>

    public interface NullTypeBindableParameterRegistration<T>
    extends ParameterRegistration<T>
    A ParameterRegistration that allows providing Java type information when binding a null value for a parameter when there is no other available type information for that parameter.
    作者:
    Gail Badner
    • 方法详细资料

      • bindNullValue

        void bindNullValue​(Class<?> nullParameterType)
        If bindable, bind a null value using the provided parameter type. This method is only valid if Parameter.getParameterType() returns null.
        参数:
        nullParameterType - the Java type to be used for binding the null value; must be non-null.
        抛出:
        IllegalArgumentException - parameterType is null or if Parameter.getParameterType() does not return null.