类 QueryParameterListBindingImpl<T>
- java.lang.Object
-
- org.hibernate.query.internal.QueryParameterListBindingImpl<T>
-
- 所有已实现的接口:
QueryParameterListBinding<T>
public class QueryParameterListBindingImpl<T> extends Object implements QueryParameterListBinding<T>
- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 QueryParameterListBindingImpl(Type type, boolean isBindingValidationRequired)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 TypegetBindType()Get the Type currently associated with this binding.Collection<T>getBindValues()Get the values currently bound.voidsetBindValues(Collection<T> bindValues)Sets the parameter binding values.voidsetBindValues(Collection<T> values, javax.persistence.TemporalType clarifiedTemporalType)Sets the parameter binding value using the explicit TemporalType in regards to the individual values.voidsetBindValues(Collection<T> values, Type clarifiedType)Sets the parameter binding values using the explicit Type in regards to the individual values.
-
-
-
构造器详细资料
-
QueryParameterListBindingImpl
public QueryParameterListBindingImpl(Type type, boolean isBindingValidationRequired)
-
-
方法详细资料
-
setBindValues
public void setBindValues(Collection<T> bindValues)
从接口复制的说明:QueryParameterListBindingSets the parameter binding values. The inherent parameter type (if known) is assumed in regards to the individual values.- 指定者:
setBindValues在接口中QueryParameterListBinding<T>- 参数:
bindValues- The bind values
-
setBindValues
public void setBindValues(Collection<T> values, Type clarifiedType)
从接口复制的说明:QueryParameterListBindingSets the parameter binding values using the explicit Type in regards to the individual values.- 指定者:
setBindValues在接口中QueryParameterListBinding<T>- 参数:
values- The bind valuesclarifiedType- The explicit Type to use
-
setBindValues
public void setBindValues(Collection<T> values, javax.persistence.TemporalType clarifiedTemporalType)
从接口复制的说明:QueryParameterListBindingSets the parameter binding value using the explicit TemporalType in regards to the individual values.- 指定者:
setBindValues在接口中QueryParameterListBinding<T>- 参数:
values- The bind valuesclarifiedTemporalType- The temporal type to use
-
getBindValues
public Collection<T> getBindValues()
从接口复制的说明:QueryParameterListBindingGet the values currently bound.- 指定者:
getBindValues在接口中QueryParameterListBinding<T>- 返回:
- The currently bound values
-
getBindType
public Type getBindType()
从接口复制的说明:QueryParameterListBindingGet the Type currently associated with this binding.- 指定者:
getBindType在接口中QueryParameterListBinding<T>- 返回:
- The currently associated Type
-
-