Interface EntityRemover
-
- All Known Implementing Classes:
HibernateAnyTypeDao
public interface EntityRemoverProvides operations for removing entities in bulk.- Since:
- 7.14
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> intremoveAllPersistentObjectsByType(Class<T> type)Remove all of the persistent objects of the specified type
-
-
-
Method Detail
-
removeAllPersistentObjectsByType
<T> int removeAllPersistentObjectsByType(Class<T> type)
Remove all of the persistent objects of the specified type- Parameters:
type- the class of the persistent objects to remove- Returns:
- the number of objects deleted.
-
-