Parameter<T>
- Type Parameters:
 <T>- the type of the parameter
 Type for query parameter objects. 
- See Also:
 - Query
- TypedQuery
  
- Since:
 - JPA 2.0
 
Chapter 4 - JPA Queries (JPQL / Criteria) explains how to use 
Parameter.Public Methods
String getName()
- Return:
 - parameter name
 
- Since:
 - JPA 2.0
 
Class<T> getParameterType()
 Values bound to the parameter must be assignable to this type. This method is required to be supported for criteria queries only. Applications that use this method for Jakarta Persistence query language queries and native queries will not be portable. 
- Return:
 - the Java type of the parameter
 
- Throws:
 - IllegalStateException - if invoked on a parameter obtained from a query language query or native query when the implementation does not support this usage
 
- Since:
 - JPA 2.0
 
Integer getPosition()
- Return:
 - position of parameter
 
- Since:
 - JPA 2.0