Uses of Interface
jakarta.persistence.metamodel.EntityType
-
Packages that use EntityType Package Description jakarta.persistence.criteria Jakarta Persistence Criteria APIjakarta.persistence.metamodel Jakarta Persistence Metamodel API -
-
Uses of EntityType in jakarta.persistence.criteria
Methods in jakarta.persistence.criteria that return EntityType Modifier and Type Method Description EntityType<X>
Root. getModel()
Return the metamodel entity corresponding to the root.Methods in jakarta.persistence.criteria with parameters of type EntityType Modifier and Type Method Description <X> Root<X>
AbstractQuery. from(EntityType<X> entity)
Create and add a query root corresponding to the given entity, forming a cartesian product with any existing roots.Root<T>
CriteriaDelete. from(EntityType<T> entity)
Create and add a query root corresponding to the entity that is the target of the DELETE.Root<T>
CriteriaUpdate. from(EntityType<T> entity)
Create and add a query root corresponding to the entity that is the target of the update.<Y> Join<X,Y>
From. join(EntityType<Y> entity)
Create and add an inner join to the given entity.<Y> Join<X,Y>
From. join(EntityType<Y> entity, JoinType joinType)
Create and add a join to the given entity.<U> Subquery<U>
CommonAbstractCriteria. subquery(EntityType<U> type)
Create a subquery of the query. -
Uses of EntityType in jakarta.persistence.metamodel
Methods in jakarta.persistence.metamodel that return EntityType Modifier and Type Method Description <X> EntityType<X>
Metamodel. entity(java.lang.Class<X> cls)
Return the metamodel entity type representing the entity.EntityType<?>
Metamodel. entity(java.lang.String entityName)
Return the metamodel entity type representing the entity.Methods in jakarta.persistence.metamodel that return types with arguments of type EntityType Modifier and Type Method Description java.util.Set<EntityType<?>>
Metamodel. getEntities()
Return the metamodel entity types.
-