Class 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.
    • Constructor Detail

      • AbstractDeleteBuilderImpl

        public AbstractDeleteBuilderImpl()
    • 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:
        newGroup in class AbstractQueryBuilderImpl<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:
        endGroup in class AbstractQueryBuilderImpl<T>