Package | Description |
---|---|
javax.persistence |
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
|
javax.persistence.criteria |
Jakarta Persistence Criteria API
|
org.hibernate |
This package defines the central Hibernate APIs.
|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.query.criteria.internal |
Modifier and Type | Method and Description |
---|---|
Query |
EntityManager.createQuery(CriteriaUpdate updateQuery)
Create an instance of
Query for executing a criteria
update query. |
Modifier and Type | Method and Description |
---|---|
<T> CriteriaUpdate<T> |
CriteriaBuilder.createCriteriaUpdate(Class<T> targetEntity)
Create a
CriteriaUpdate query object to perform a bulk update operation. |
<Y> CriteriaUpdate<T> |
CriteriaUpdate.set(Path<Y> attribute,
Expression<? extends Y> value)
Update the value of the specified attribute.
|
<Y,X extends Y> |
CriteriaUpdate.set(Path<Y> attribute,
X value)
Update the value of the specified attribute.
|
<Y> CriteriaUpdate<T> |
CriteriaUpdate.set(SingularAttribute<? super T,Y> attribute,
Expression<? extends Y> value)
Update the value of the specified attribute.
|
<Y,X extends Y> |
CriteriaUpdate.set(SingularAttribute<? super T,Y> attribute,
X value)
Update the value of the specified attribute.
|
CriteriaUpdate<T> |
CriteriaUpdate.set(String attributeName,
Object value)
Update the value of the specified attribute.
|
CriteriaUpdate<T> |
CriteriaUpdate.where(Expression<Boolean> restriction)
Modify the update query to restrict the target of the update
according to the specified boolean expression.
|
CriteriaUpdate<T> |
CriteriaUpdate.where(Predicate... restrictions)
Modify the update query to restrict the target of the update
according to the conjunction of the specified restriction
predicates.
|
Modifier and Type | Method and Description |
---|---|
Query |
Session.createQuery(CriteriaUpdate updateQuery) |
Modifier and Type | Method and Description |
---|---|
QueryImplementor |
SessionDelegatorBaseImpl.createQuery(CriteriaUpdate updateQuery) |
QueryImplementor |
SessionImplementor.createQuery(CriteriaUpdate updateQuery) |
Modifier and Type | Method and Description |
---|---|
QueryImplementor |
SessionImpl.createQuery(CriteriaUpdate criteriaUpdate) |
Modifier and Type | Class and Description |
---|---|
class |
CriteriaUpdateImpl<T>
Hibernate implementation of the JPA 2.1
CriteriaUpdate contract. |
Modifier and Type | Method and Description |
---|---|
<T> CriteriaUpdate<T> |
CriteriaBuilderImpl.createCriteriaUpdate(Class<T> targetEntity) |
<Y> CriteriaUpdate<T> |
CriteriaUpdateImpl.set(Path<Y> attributePath,
Expression<? extends Y> value) |
<Y,X extends Y> |
CriteriaUpdateImpl.set(Path<Y> attributePath,
X value) |
<Y> CriteriaUpdate<T> |
CriteriaUpdateImpl.set(SingularAttribute<? super T,Y> singularAttribute,
Expression<? extends Y> value) |
<Y,X extends Y> |
CriteriaUpdateImpl.set(SingularAttribute<? super T,Y> singularAttribute,
X value) |
CriteriaUpdate<T> |
CriteriaUpdateImpl.set(String attributeName,
Object value) |
CriteriaUpdate<T> |
CriteriaUpdateImpl.where(Expression<Boolean> restriction) |
CriteriaUpdate<T> |
CriteriaUpdateImpl.where(Predicate... restrictions) |
Copyright © 2021 JBoss by Red Hat. All rights reserved.