Modifier and Type | Class and Description |
---|---|
static class |
Join.On
On component used for specifying join 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.
|
public static Join.On join(DataSource datasource)
datasource
- The DataSource object of the JOIN clause.public static Join.On leftJoin(DataSource datasource)
datasource
- The DataSource object of the JOIN clause.public static Join.On leftOuterJoin(DataSource datasource)
datasource
- The DataSource object of the JOIN clause.public static Join.On innerJoin(DataSource datasource)
datasource
- The DataSource object of the JOIN clause.public static Join crossJoin(DataSource datasource)
datasource
- The DataSource object of the JOIN clause.