Modifier and Type | Class and Description |
---|---|
static class |
Join.On
Component used for specifying join on conditions.
|
Modifier and Type | Method and Description |
---|---|
static Join |
crossJoin(DataSource datasource)
Create an CROSS JOIN component with the given data source.
|
static Join.On |
innerJoin(DataSource datasource)
Create an INNER JOIN component with the given data source.
|
static Join.On |
join(DataSource datasource)
Create a JOIN (same as INNER JOIN) component with the given data source.
|
static Join.On |
leftJoin(DataSource datasource)
Create a LEFT JOIN (same as LEFT OUTER JOIN) component with the given data source.
|
static Join.On |
leftOuterJoin(DataSource datasource)
Create a LEFT OUTER JOIN component with the given data source.
|
@NonNull public static Join.On join(@NonNull DataSource datasource)
datasource
- The DataSource object of the JOIN clause.@NonNull public static Join.On innerJoin(@NonNull DataSource datasource)
datasource
- The DataSource object of the JOIN clause.@NonNull public static Join.On leftJoin(@NonNull DataSource datasource)
datasource
- The DataSource object of the JOIN clause.@NonNull public static Join.On leftOuterJoin(@NonNull DataSource datasource)
datasource
- The DataSource object of the JOIN clause.@NonNull public static Join crossJoin(@NonNull DataSource datasource)
datasource
- The DataSource object of the JOIN clause.