Package org.jbpm.query.jpa.builder.impl
Class AbstractDeleteBuilderImpl<T>
- java.lang.Object
-
- org.jbpm.query.jpa.builder.impl.AbstractQueryBuilderImpl<T>
-
- org.jbpm.query.jpa.builder.impl.AbstractDeleteBuilderImpl<T>
-
- Type Parameters:
T- The type of the interface that the delete builder implements. This is used for the fluent API.
public abstract class AbstractDeleteBuilderImpl<T> extends AbstractQueryBuilderImpl<T>
This is the abstract parent class for all delete (query) builder implementations.
-
-
Field Summary
-
Fields inherited from class org.jbpm.query.jpa.builder.impl.AbstractQueryBuilderImpl
queryWhere
-
-
Constructor Summary
Constructors Constructor Description AbstractDeleteBuilderImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TendGroup()This operation is *NOT* supported on delete queries, because String based query building would be way too much work, especially in comparison to the JPA Criteria infrastructure we have for normal queries.TnewGroup()This operation is *NOT* supported on delete queries, because String based query building would be way too much work, especially in comparison to the JPA Criteria infrastructure we have for normal queries.-
Methods inherited from class org.jbpm.query.jpa.builder.impl.AbstractQueryBuilderImpl
addIntParameter, addLongParameter, addObjectParameter, addRangeParameter, addRangeParameters, and, clear, equals, getQueryWhere, intersect, like, maxResults, offset, or, regex, union
-
-
-
-
Method Detail
-
newGroup
public T newGroup()
This operation is *NOT* supported on delete queries, because String based query building would be way too much work, especially in comparison to the JPA Criteria infrastructure we have for normal queries.- Overrides:
newGroupin classAbstractQueryBuilderImpl<T>
-
endGroup
public T endGroup()
This operation is *NOT* supported on delete queries, because String based query building would be way too much work, especially in comparison to the JPA Criteria infrastructure we have for normal queries.- Overrides:
endGroupin classAbstractQueryBuilderImpl<T>
-
-