Modifier and Type | Method and Description |
---|---|
<C extends JoinClause> |
DELETE.registerJoinClause(C join) |
<C extends JoinClause> |
UPDATE.registerJoinClause(C join) |
<C extends JoinClause> |
SELECT.registerJoinClause(C join) |
Modifier and Type | Method and Description |
---|---|
List<JoinClause> |
DELETE.getJoins() |
List<JoinClause> |
UPDATE.getJoins() |
List<JoinClause> |
SELECT.getJoins() |
Modifier and Type | Method and Description |
---|---|
DELETE |
DELETE.addJoinClause(JoinClause joinClause) |
UPDATE |
UPDATE.addJoinClause(JoinClause joinClause) |
SELECT |
SELECT.addJoinClause(JoinClause joinClause) |
Modifier and Type | Method and Description |
---|---|
protected StringBuilder |
StandardDMLAssembler.assembleJOIN(TableQuery parentQuery,
JoinClause join,
StringBuilder sb,
int indentLevel,
int flags) |
Modifier and Type | Class and Description |
---|---|
class |
INNER_JOIN
The Class INNER_JOIN.
|
class |
LEFT_JOIN
The Class LEFT_JOIN.
|
class |
OUTER_JOIN
The Class OUTER_JOIN.
|
class |
RIGHT_JOIN
The Class RIGHT_JOIN.
|
Modifier and Type | Method and Description |
---|---|
<C extends JoinClause> |
FROM.registerJoinClause(C newJoin) |
Modifier and Type | Method and Description |
---|---|
JoinClause |
JoinClause.AND(Object condition) |
abstract JoinClause |
JoinClause.copy() |
JoinClause |
FROM.getLastJoin()
Gets the last join.
|
JoinClause |
JoinClause.INNER_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
FROM.INNER_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
JoinClause.LEFT_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
FROM.LEFT_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
JoinClause.OR(Object condition) |
JoinClause |
JoinClause.OUTER_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
FROM.OUTER_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
JoinClause.RIGHT_JOIN(TableExpression table,
Object joinCondition) |
JoinClause |
FROM.RIGHT_JOIN(TableExpression table,
Object joinCondition) |
Modifier and Type | Method and Description |
---|---|
List<JoinClause> |
FROM.getJoins() |
Modifier and Type | Method and Description |
---|---|
FROM |
FROM.addJoinClause(JoinClause newJoin) |
Modifier and Type | Method and Description |
---|---|
FROM |
FROM.setJoins(List<JoinClause> joins) |
Constructor and Description |
---|
JoinClause(JoinClause copySource,
FROM parentFromClause) |
Modifier and Type | Method and Description |
---|---|
<C extends JoinClause> |
JoinContainer.registerJoinClause(C join)
Register join clause.
|
Modifier and Type | Method and Description |
---|---|
List<JoinClause> |
JoinContainer.getJoins()
Gets the joins.
|
Modifier and Type | Method and Description |
---|---|
J |
JoinContainer.addJoinClause(JoinClause join)
Adds the join clause.
|
Modifier and Type | Method and Description |
---|---|
J |
JoinContainer.setJoins(List<JoinClause> joins)
Sets the joins.
|
Modifier and Type | Method and Description |
---|---|
<C extends JoinClause> |
ConditionalTableQuery.registerJoinClause(C join) |
<C extends JoinClause> |
ConditionalTableQuery.Implementation.registerJoinClause(C join) |
Modifier and Type | Method and Description |
---|---|
List<JoinClause> |
ConditionalTableQuery.getJoins() |
List<JoinClause> |
ConditionalTableQuery.Implementation.getJoins() |
Modifier and Type | Method and Description |
---|---|
ConditionalTableQuery |
ConditionalTableQuery.addJoinClause(JoinClause joinClause) |
ConditionalTableQuery.Implementation |
ConditionalTableQuery.Implementation.addJoinClause(JoinClause join)
Adds a JOIN Clause but does NOT update the last condition.
Behaves like a simple setter (oder "adder") |
protected ConditionalTableQuery.Implementation |
ConditionalTableQuery.Implementation.addJoinClauseForSQL(JoinClause join)
Adds a JOIN Clause and sets the last condition to the newly added join.
|
Copyright © 2003–2023 XDEV Software. All rights reserved.