E - result typepublic interface Join<E>
| Modifier and Type | Method and Description |
|---|---|
<J> JoinOn<E> |
join(Class<J> type)
inner join on the type
|
<J> JoinOn<E> |
join(Return<J> query)
inner join on the type
|
<J> JoinOn<E> |
leftJoin(Class<J> type)
left inner join on the type
|
<J> JoinOn<E> |
leftJoin(Return<J> query)
left inner join on the type
|
<J> JoinOn<E> |
rightJoin(Class<J> type)
right inner join on the type
|
<J> JoinOn<E> |
rightJoin(Return<J> query)
right inner join on the type
|
<J> JoinOn<E> join(Class<J> type)
J - corresponding join typetype - type<J> JoinOn<E> leftJoin(Class<J> type)
J - corresponding join typetype - type<J> JoinOn<E> rightJoin(Class<J> type)
J - corresponding join typetype - type<J> JoinOn<E> join(Return<J> query)
J - corresponding join typequery - query<J> JoinOn<E> leftJoin(Return<J> query)
J - corresponding join typequery - query