Package | Description |
---|---|
javax.persistence | |
javax.persistence.criteria | |
org.hibernate.jpa.criteria | |
org.hibernate.jpa.spi |
Modifier and Type | Method and Description |
---|---|
Query |
EntityManager.createQuery(CriteriaDelete deleteQuery)
Create an instance of Query for executing a criteria
delete query.
|
Modifier and Type | Method and Description |
---|---|
<T> CriteriaDelete<T> |
CriteriaBuilder.createCriteriaDelete(Class<T> targetEntity)
Create a query object to perform a bulk delete operation.
|
CriteriaDelete<T> |
CriteriaDelete.where(Expression<Boolean> restriction)
Modify the query to restrict the target of the deletion
according to the specified boolean expression.
|
CriteriaDelete<T> |
CriteriaDelete.where(Predicate... restrictions)
Modify the query to restrict the target of the deletion
according to the conjunction of the specified restriction
predicates.
|
Modifier and Type | Class and Description |
---|---|
class |
CriteriaDeleteImpl<T>
Hibernate implementation of the JPA 2.1
CriteriaDelete contract. |
Modifier and Type | Method and Description |
---|---|
<T> CriteriaDelete<T> |
CriteriaBuilderImpl.createCriteriaDelete(Class<T> targetEntity) |
CriteriaDelete<T> |
CriteriaDeleteImpl.where(Expression<Boolean> restriction) |
CriteriaDelete<T> |
CriteriaDeleteImpl.where(Predicate... restrictions) |
Modifier and Type | Method and Description |
---|---|
Query |
AbstractEntityManagerImpl.createQuery(CriteriaDelete criteriaDelete) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.