Uses of Interface
com.blazebit.persistence.ReturningDeleteCriteriaBuilder
-
Packages that use ReturningDeleteCriteriaBuilder Package Description com.blazebit.persistence Blaze-Persistence is a rich Criteria API for JPA. -
-
Uses of ReturningDeleteCriteriaBuilder in com.blazebit.persistence
Methods in com.blazebit.persistence that return ReturningDeleteCriteriaBuilder Modifier and Type Method Description <T> ReturningDeleteCriteriaBuilder<T,X>
ReturningModificationCriteriaBuilderFactory. delete(Class<T> deleteClass)
LikeReturningModificationCriteriaBuilderFactory.delete(java.lang.Class, java.lang.String)
but with the alias equivalent to the camel cased result of whatClass.getSimpleName()
of the delete class returns.<T> ReturningDeleteCriteriaBuilder<T,X>
ReturningModificationCriteriaBuilderFactory. delete(Class<T> deleteClass, String alias)
Creates a new delete criteria builder for the given entity class.<T> ReturningDeleteCriteriaBuilder<T,X>
ReturningModificationCriteriaBuilderFactory. deleteCollection(Class<T> deleteOwnerClass, String collectionName)
LikeReturningModificationCriteriaBuilderFactory.deleteCollection(java.lang.Class, java.lang.String, java.lang.String)
but with the alias equivalent to the camel cased result of whatClass.getSimpleName()
of the delete owner class returns.<T> ReturningDeleteCriteriaBuilder<T,X>
ReturningModificationCriteriaBuilderFactory. deleteCollection(Class<T> deleteOwnerClass, String alias, String collectionName)
Creates a new delete criteria builder for the given entity class and collection name to delete elements of the entity class's collection.
-