Package com.blazebit.persistence
Interface JoinOnAndBuilder<T>
-
- Type Parameters:
T
- The builder type that is returned on terminal operations
- All Superinterfaces:
BaseJoinOnBuilder<JoinOnAndBuilder<T>>
public interface JoinOnAndBuilder<T> extends BaseJoinOnBuilder<JoinOnAndBuilder<T>>
The builder interface for a on predicate container that connects predicates with the AND operator.- Since:
- 1.0.0
- Author:
- Christian Beikov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
endAnd()
Finishes the AND predicate and adds it to the parent predicate container represented by the typeT
.JoinOnOrBuilder<JoinOnAndBuilder<T>>
onOr()
Starts a on or builder which connects it's predicates with the OR operator.-
Methods inherited from interface com.blazebit.persistence.BaseJoinOnBuilder
on, onCase, onExists, onExists, onExpression, onExpressionSubqueries, onNotExists, onNotExists, onSimpleCase, onSubqueries, onSubquery, onSubquery, onSubquery, onSubquery
-
-
-
-
Method Detail
-
endAnd
T endAnd()
Finishes the AND predicate and adds it to the parent predicate container represented by the typeT
.- Returns:
- The parent predicate container builder
-
onOr
JoinOnOrBuilder<JoinOnAndBuilder<T>> onOr()
Starts a on or builder which connects it's predicates with the OR operator. When the builder finishes, the predicate is added to this predicate container as conjunct.- Returns:
- The on or builder
-
-