接口 ParameterBind<T>
-
- 所有超级接口:
QueryParameterBinding<T>
- 所有已知实现类:
ParameterBindImpl
public interface ParameterBind<T> extends QueryParameterBinding<T>
Describes an input value binding for any IN/INOUT parameters.
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 javax.persistence.TemporalTypegetExplicitTemporalType()If<T>represents a DATE/TIME type value, JPA usually allows specifying the particular parts of the DATE/TIME value to be bound.TgetValue()Retrieves the bound value.-
从接口继承的方法 org.hibernate.query.spi.QueryParameterBinding
getBindType, getBindValue, isBound, setBindValue, setBindValue, setBindValue
-
-
-
-
方法详细资料
-
getValue
T getValue()
Retrieves the bound value.- 返回:
- The bound value.
-
getExplicitTemporalType
javax.persistence.TemporalType getExplicitTemporalType()
If<T>represents a DATE/TIME type value, JPA usually allows specifying the particular parts of the DATE/TIME value to be bound. This value represents the particular part the user requested to be bound.- 返回:
- The explicitly supplied TemporalType.
-
-