/** * Make a Collection of Persistence-Capable objects transient * * @param pcs Collection of Persistence-Capable objects */ public void makeTransientAll(Collection pcs) { checkStatus(); pm.makeTransientAll(pcs); }
/** * Make an array of Persistence-Capable objects transient * * @param pcs Array of Persistence-Capable objects */ public void makeTransientAll(Object... pcs) { checkStatus(); pm.makeTransientAll(pcs); }
/** * Make an array of Persistence-Capable objects transient * * @param useFetchPlan Whether to use the fetch plan * @param pcs Array of Persistence-Capable objects * @since JDO 2.1 */ public void makeTransientAll(boolean useFetchPlan, Object... pcs) { checkStatus(); pm.makeTransientAll(useFetchPlan, pcs); }
/** * Make a Collection of Persistence-Capable objects transient * * @param pcs Collection of Persistence-Capable objects * @param useFetchPlan Whether to use the fetch plan */ public void makeTransientAll(Collection pcs, boolean useFetchPlan) { checkStatus(); pm.makeTransientAll(pcs, useFetchPlan); }
/** * Make an array of Persistence-Capable objects transient * * @param pcs Array of Persistence-Capable objects * @param useFetchPlan Whether to use the fetch plan */ public void makeTransientAll(Object[] pcs, boolean useFetchPlan) { checkStatus(); pm.makeTransientAll(useFetchPlan, pcs); }