Uses of Interface
jakarta.persistence.TypedQuery
Packages that use TypedQuery
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
Implements and extends the JPA-defined entity graph API.
Defines the internal implementation of the stored procedure SPI.
Defines an SPI for calling stored procedures and functions.
Everything related to HQL/JPQL, native SQL, and criteria queries.
The JPA-standard criteria query API defines all the operations needed express
any query written in standard JPQL.
SPIs for HQL support.
Contains a range of internal abstractions for dealing with query execution,
query plans, query options, and query parameters.
Implementation of the SPIs for native SQL query support.
SPIs for native SQL query support.
Package for the SQM-backed Query implementation details
-
Uses of TypedQuery in jakarta.persistence
Methods in jakarta.persistence that return TypedQueryModifier and TypeMethodDescription<T> TypedQuery<T>EntityManager.createNamedQuery(String name, Class<T> resultClass) Create an instance ofTypedQueryfor executing a Jakarta Persistence query language named query.<T> TypedQuery<T>EntityManager.createQuery(CriteriaQuery<T> criteriaQuery) Create an instance ofTypedQueryfor executing a criteria query.<T> TypedQuery<T>EntityManager.createQuery(String qlString, Class<T> resultClass) Create an instance ofTypedQueryfor executing a Jakarta Persistence query language statement.TypedQuery.setFirstResult(int startPosition) Set the position of the first result to retrieve.TypedQuery.setFlushMode(FlushModeType flushMode) Set the flush mode type to be used for the query execution.Set a query property or hint.TypedQuery.setLockMode(LockModeType lockMode) Set the lock mode type to be used for the query execution.TypedQuery.setMaxResults(int maxResult) Set the maximum number of results to retrieve.TypedQuery.setParameter(int position, Object value) Bind an argument value to a positional parameter.TypedQuery.setParameter(int position, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto a positional parameter.TypedQuery.setParameter(int position, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto a positional parameter.TypedQuery.setParameter(Parameter<Calendar> param, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto aParameterobject.TypedQuery.setParameter(Parameter<Date> param, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto aParameterobject.<T> TypedQuery<X>TypedQuery.setParameter(Parameter<T> param, T value) Bind the value of aParameterobject.TypedQuery.setParameter(String name, Object value) Bind an argument value to a named parameter.TypedQuery.setParameter(String name, Calendar value, TemporalType temporalType) Bind an instance ofjava.util.Calendarto a named parameter.TypedQuery.setParameter(String name, Date value, TemporalType temporalType) Bind an instance ofjava.util.Dateto a named parameter. -
Uses of TypedQuery in org.hibernate.graph
Methods in org.hibernate.graph with parameters of type TypedQueryModifier and TypeMethodDescriptionstatic <R> List<R>EntityGraphs.executeList(TypedQuery<R> query, EntityGraph<R> graph) Form ofEntityGraphs.executeList(Query, EntityGraph, String)accepting aTypedQuery.static <R> List<R>EntityGraphs.executeList(TypedQuery<R> query, EntityGraph<R> graph, String semanticJpaHintName) Form ofEntityGraphs.executeList(Query, EntityGraph, String)accepting aTypedQuery.static <R> List<R>EntityGraphs.executeList(TypedQuery<R> query, EntityGraph<R> graph, GraphSemantic semantic) Form ofEntityGraphs.executeList(Query, EntityGraph, GraphSemantic)accepting aTypedQuery. -
Uses of TypedQuery in org.hibernate.procedure.internal
Classes in org.hibernate.procedure.internal that implement TypedQuery -
Uses of TypedQuery in org.hibernate.procedure.spi
Subinterfaces of TypedQuery in org.hibernate.procedure.spi -
Uses of TypedQuery in org.hibernate.query
Subinterfaces of TypedQuery in org.hibernate.queryModifier and TypeInterfaceDescriptioninterfaceNativeQuery<T>Within the context of an active session, an instance of this type represents an executable query written in the native SQL dialect of the underlying database.interfaceQuery<R>Within the context of an active session, an instance of this type represents an executable query, either: a query written in HQL, a named query written in HQL or native SQL, or a criteria query. -
Uses of TypedQuery in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return TypedQuery -
Uses of TypedQuery in org.hibernate.query.hql.spi
Subinterfaces of TypedQuery in org.hibernate.query.hql.spiModifier and TypeInterfaceDescriptioninterfaceQueryImplementorspecialization for SQM-based Query references -
Uses of TypedQuery in org.hibernate.query.spi
Subinterfaces of TypedQuery in org.hibernate.query.spiClasses in org.hibernate.query.spi that implement TypedQuery -
Uses of TypedQuery in org.hibernate.query.sql.internal
Classes in org.hibernate.query.sql.internal that implement TypedQuery -
Uses of TypedQuery in org.hibernate.query.sql.spi
Subinterfaces of TypedQuery in org.hibernate.query.sql.spi -
Uses of TypedQuery in org.hibernate.query.sqm.internal
Classes in org.hibernate.query.sqm.internal that implement TypedQuery -
Uses of TypedQuery in org.hibernate.search.mapper.orm
Methods in org.hibernate.search.mapper.orm that return TypedQueryModifier and TypeMethodDescriptionstatic <H> TypedQuery<H>Search.toJpaQuery(SearchQuery<H> searchQuery) Convert aSearchQueryto aJPA query. -
Uses of TypedQuery in org.hibernate.search.mapper.orm.search.query.impl
Classes in org.hibernate.search.mapper.orm.search.query.impl that implement TypedQuery