-
- Type Parameters:
R- an upper bound on the result type of the query
public interface TypedQueryReference<R>A reference to a named query declared via theNamedQueryorNamedNativeQueryannotations.- Since:
- 3.2
- See Also:
EntityManager.createQuery(TypedQueryReference)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Object>getHints()A map keyed by hint name of all hints specified viaNamedQuery.hints()orNamedNativeQuery.hints().StringgetName()The name of the query.Class<? extends R>getResultType()The result type of the query.
-
-
-
Method Detail
-
getName
String getName()
The name of the query.
-
getHints
Map<String,Object> getHints()
A map keyed by hint name of all hints specified viaNamedQuery.hints()orNamedNativeQuery.hints().
-
-