<T> TypedQuery<T> |
EntityManager.createNamedQuery(java.lang.String name,
java.lang.Class<T> resultClass) |
Create an instance of TypedQuery for executing a
Jakarta Persistence query language named query.
|
<T> TypedQuery<T> |
EntityManager.createQuery(java.lang.String qlString,
java.lang.Class<T> resultClass) |
Create an instance of TypedQuery for executing a
Jakarta Persistence query language statement.
|
<T> TypedQuery<T> |
EntityManager.createQuery(CriteriaQuery<T> criteriaQuery) |
Create an instance of TypedQuery for executing a
criteria query.
|
TypedQuery<X> |
TypedQuery.setFirstResult(int startPosition) |
Set the position of the first result to retrieve.
|
TypedQuery<X> |
TypedQuery.setFlushMode(FlushModeType flushMode) |
Set the flush mode type to be used for the query execution.
|
TypedQuery<X> |
TypedQuery.setHint(java.lang.String hintName,
java.lang.Object value) |
Set a query property or hint.
|
TypedQuery<X> |
TypedQuery.setLockMode(LockModeType lockMode) |
Set the lock mode type to be used for the query execution.
|
TypedQuery<X> |
TypedQuery.setMaxResults(int maxResult) |
Set the maximum number of results to retrieve.
|
TypedQuery<X> |
TypedQuery.setParameter(int position,
java.lang.Object value) |
Bind an argument value to a positional parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(int position,
java.util.Calendar value,
TemporalType temporalType) |
Bind an instance of java.util.Calendar to a positional
parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(int position,
java.util.Date value,
TemporalType temporalType) |
Bind an instance of java.util.Date to a positional parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(java.lang.String name,
java.lang.Object value) |
Bind an argument value to a named parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(java.lang.String name,
java.util.Calendar value,
TemporalType temporalType) |
Bind an instance of java.util.Calendar to a named parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(java.lang.String name,
java.util.Date value,
TemporalType temporalType) |
Bind an instance of java.util.Date to a named parameter.
|
TypedQuery<X> |
TypedQuery.setParameter(Parameter<java.util.Calendar> param,
java.util.Calendar value,
TemporalType temporalType) |
Bind an instance of java.util.Calendar to a Parameter object.
|
TypedQuery<X> |
TypedQuery.setParameter(Parameter<java.util.Date> param,
java.util.Date value,
TemporalType temporalType) |
Bind an instance of java.util.Date to a Parameter object.
|
<T> TypedQuery<X> |
TypedQuery.setParameter(Parameter<T> param,
T value) |
Bind the value of a Parameter object.
|