Interface SelectBuilder.SelectOnCondition
- All Superinterfaces:
SelectBuilder.BuildSelect, SelectBuilder.SelectJoin, SelectBuilder.SelectLock
- All Known Subinterfaces:
SelectBuilder.SelectFromAndJoinCondition
- Enclosing interface:
SelectBuilder
public static interface SelectBuilder.SelectOnCondition
extends SelectBuilder.SelectJoin, SelectBuilder.SelectLock, SelectBuilder.BuildSelect
Builder exposing JOIN and
JOIN … ON continuation methods.- Since:
- 1.1
- Author:
- Mark Paluch, Jens Schauder, Myeonghyeon Lee
-
Method Summary
Modifier and TypeMethodDescriptionand(Expression column) Declare an additional source column in theJOIN.Methods inherited from interface SelectBuilder.BuildSelect
build, buildMethods inherited from interface SelectBuilder.SelectJoin
join, join, join, leftOuterJoinMethods inherited from interface SelectBuilder.SelectLock
lock
-
Method Details
-
and
Declare an additional source column in theJOIN.- Parameters:
column- the column, must not be null.- Returns:
thisbuilder.- See Also:
-