com.blazebit.persistence.BaseJoinOnBuilder Maven / Gradle / Ivy
/*
* Copyright 2014 - 2019 Blazebit.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.blazebit.persistence;
/**
* A base interface for builders that support join on.
* This is related to the fact, that a query builder supports join on clauses.
*
* @param The concrete builder type
* @author Christian Beikov
* @since 1.0.0
*/
public interface BaseJoinOnBuilder> {
/**
* Starts a {@link RestrictionBuilder} for an on predicate with the given expression as left hand expression.
* When the builder finishes, the predicate is added to the parent predicate container represented by the type T
.
*
* @param expression The left hand expression for a having predicate
* @return The restriction builder for the given expression
*/
public RestrictionBuilder on(String expression);
// NOTE: JPA 4.6.16 says that subqueries are only allowed in WHERE and HAVING
/**
* Starts a {@link SubqueryInitiator} for the left hand side of a predicate.
* When the subquery builder and the restriction builder for the right hand side are finished, the predicate is added to the
* parent predicate container represented by the type T
.
*
* @return The subquery initiator for building a subquery
* @since 1.4.0
*/
public SubqueryInitiator> onSubquery();
/**
* Starts a {@link SubqueryInitiator} for the left hand side of a predicate.
*
*
* All occurrences of subqueryAlias
in expression
will be replaced by the subquery. When the subquery
* builder and the restriction builder for the right hand side are finished, the predicate is added to the parent predicate
* container represented by the type T
.
*
*
* @param subqueryAlias The alias for the subquery which will be replaced by the actual subquery
* @param expression The expression which will be used as left hand side of a predicate.
* This expression contains the {@code subqueryAlias} to define the insertion points for the subquery.
* @return The subquery initiator for building a subquery
* @since 1.4.0
*/
public SubqueryInitiator> onSubquery(String subqueryAlias, String expression);
/**
* Starts a {@link MultipleSubqueryInitiator} for the left hand side of a predicate.
*
*
* All occurrences of subsequently defined subqueryAlias
es in expression
will be replaced by the respective subquery.
* When the builder finishes, the resulting expression is used for the left hand side of the predicate.
*
*
* @param expression The expression which will be used as left hand side of a predicate
* @return The subquery initiator for building multiple subqueries for their respective subqueryAliases
* @since 1.4.0
*/
public MultipleSubqueryInitiator> onSubqueries(String expression);
/**
* Starts a {@link SubqueryBuilder} based on the given criteria builder for the left hand side of a predicate.
* When the subquery builder and the restriction builder for the right hand side are finished, the predicate is added to the
* parent predicate container represented by the type T
.
*
* @param criteriaBuilder The criteria builder to base the subquery on
* @return The subquery builder for building a subquery
* @since 1.4.0
*/
public SubqueryBuilder> onSubquery(FullQueryBuilder, ?> criteriaBuilder);
/**
* Starts a {@link SubqueryBuilder} based on the given criteria builder for the left hand side of a predicate. All occurrences of subqueryAlias
in
* expression
will be replaced by the subquery.
* When the subquery builder and the restriction builder for the right hand side are finished, the predicate is added to the
* parent predicate container represented by the type T
.
*
* @param subqueryAlias The alias for the subquery which will be replaced by the actual subquery
* @param expression The expression which will be used as left hand side of a predicate
* @param criteriaBuilder The criteria builder to base the subquery on
* @return The subquery builder for building a subquery
* @since 1.4.0
*/
public SubqueryBuilder> onSubquery(String subqueryAlias, String expression, FullQueryBuilder, ?> criteriaBuilder);
/**
* Adds the given expression as expression to the on clause.
*
* @param expression The on expression
* @return The builder
* @since 1.4.0
*/
public T onExpression(String expression);
/**
* Starts a {@link MultipleSubqueryInitiator} for expression of the on clause.
*
*
* All occurrences of subsequently defined subqueryAlias
es in expression
will be replaced by the respective subquery.
* When the builder finishes, the resulting expression is added as expression to the on clause.
*
*
* @param expression The on expression
* @return The subquery initiator for building multiple subqueries for their respective subqueryAliases
* @since 1.4.0
*/
public MultipleSubqueryInitiator onExpressionSubqueries(String expression);
/**
* Starts a {@link CaseWhenBuilder} for an on predicate.
* When the {@link CaseWhenBuilder} and the restriction builder for the right hand side are finished,
* the predicate is added to the parent predicate container represented by the type T
.
*
* @return A {@link CaseWhenBuilder}
* @since 1.4.0
*/
public CaseWhenStarterBuilder> onCase();
/**
* Starts a {@link SimpleCaseWhenBuilder} for an on predicate.
* When the {@link CaseWhenBuilder} and the restriction builder for the right hand side are finished,
* the predicate is added to the parent predicate container represented by the type T
.
*
* @param expression Case operand expression
* @return A {@link CaseWhenBuilder}
* @since 1.4.0
*/
public SimpleCaseWhenStarterBuilder> onSimpleCase(String expression);
/**
* Starts an exists predicate for the on clause with a subquery on the right hand side.
* When the builder finishes, the predicate is added to the parent predicate container represented by the type T
.
*
* @return The subquery initiator for building a subquery
* @since 1.4.0
*/
public SubqueryInitiator onExists();
/**
* Starts an not exists predicate for the on clause with a subquery on the right hand side.
* When the builder finishes, the predicate is added to the parent predicate container represented by the type T
.
*
* @return The subquery initiator for building a subquery
* @since 1.4.0
*/
public SubqueryInitiator onNotExists();
/**
* Starts an exists predicate for the on clause with a subquery on the right hand side based on the given criteria builder.
* When the builder finishes, the predicate is added to the parent predicate container represented by the type T
.
*
* @param criteriaBuilder The criteria builder to base the subquery on
* @return The subquery builder for building a subquery
* @since 1.4.0
*/
public SubqueryBuilder onExists(FullQueryBuilder, ?> criteriaBuilder);
/**
* Starts an exists predicate for the on clause with a subquery on the right hand side based on the given criteria builder.
* When the builder finishes, the predicate is added to the parent predicate container represented by the type T
.
*
* @param criteriaBuilder The criteria builder to base the subquery on
* @return The subquery builder for building a subquery
* @since 1.4.0
*/
public SubqueryBuilder onNotExists(FullQueryBuilder, ?> criteriaBuilder);
}