Class DeleteBatchTranslator
- java.lang.Object
-
- org.apache.cayenne.access.translator.batch.BaseBatchTranslator<DeleteBatchQuery>
-
- org.apache.cayenne.access.translator.batch.DeleteBatchTranslator
-
- All Implemented Interfaces:
BatchTranslator
- Direct Known Subclasses:
SoftDeleteBatchTranslator
public class DeleteBatchTranslator extends BaseBatchTranslator<DeleteBatchQuery> implements BatchTranslator
- Since:
- 4.2
-
-
Field Summary
-
Fields inherited from class org.apache.cayenne.access.translator.batch.BaseBatchTranslator
bindings, context
-
-
Constructor Summary
Constructors Constructor Description DeleteBatchTranslator(DeleteBatchQuery query, DbAdapter adapter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetSql()Returns SQL String that can be used to init a PreparedStatement.protected booleanisNullAttribute(DbAttribute attribute)protected intupdateBinding(Object value, int position)DbAttributeBinding[]updateBindings(BatchQueryRow row)Updates internal bindings to be used with a given row, returning updated bindings array.-
Methods inherited from class org.apache.cayenne.access.translator.batch.BaseBatchTranslator
buildQualifier, doTranslate, getBindings
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.cayenne.access.translator.batch.BatchTranslator
getBindings
-
-
-
-
Constructor Detail
-
DeleteBatchTranslator
public DeleteBatchTranslator(DeleteBatchQuery query, DbAdapter adapter)
-
-
Method Detail
-
getSql
public String getSql()
Description copied from interface:BatchTranslatorReturns SQL String that can be used to init a PreparedStatement.- Specified by:
getSqlin interfaceBatchTranslator
-
isNullAttribute
protected boolean isNullAttribute(DbAttribute attribute)
- Specified by:
isNullAttributein classBaseBatchTranslator<DeleteBatchQuery>
-
updateBindings
public DbAttributeBinding[] updateBindings(BatchQueryRow row)
Description copied from interface:BatchTranslatorUpdates internal bindings to be used with a given row, returning updated bindings array. This method guarantees that the returned array contains the same bindings in the same order as in the array returned fromBatchTranslator.getBindings()(but in a state corresponding to the 'row' parameter). Usually the returned array is actually the same object reused for every iteration, only with changed object state.- Specified by:
updateBindingsin interfaceBatchTranslator
-
updateBinding
protected int updateBinding(Object value, int position)
-
-