Interface SelectBuilder.SelectOn
- Enclosing interface:
- SelectBuilder
public static interface SelectBuilder.SelectOn
Interface exposing
ON methods to declare JOIN relationships.-
Method Summary
Modifier and TypeMethodDescriptionDeclare a joinconditionin one step.on(Expression column) Declare the source column in theJOIN.
-
Method Details
-
on
Declare the source column in theJOIN.- Parameters:
column- the source column, must not be null or empty.- Returns:
thisbuilder.- See Also:
-
on
Declare a joinconditionin one step. Using conditions allows more flexibility in comparison toon(Expression)which only allows for equality comparisons chained together withAND.- Parameters:
condition- must not be null.- Returns:
thisbuilder.- Since:
- 2.3
- See Also:
-