ObjectDB ObjectDB

setParameter(name, value, temporalType) - JPA TypedQuery's method

Method
javax.persistence.TypedQuery
TypedQuery<X> setParameter(
  String name,
  Date value,
  TemporalType temporalType
)

Bind an instance of java.util.Date to a named parameter.
Parameters:
name - parameter name
value - parameter value
temporalType - temporal type
Returns:
the same query instance
Throws:
IllegalArgumentException - if the parameter name does not correspond to a parameter of the query or if the value argument is of incorrect type
Since:
JPA 2.0