| Package | Description |
|---|---|
| net.aditsu.depeche |
| Modifier and Type | Method and Description |
|---|---|
JoinType |
Join.getType() |
static JoinType |
JoinType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinType[] |
JoinType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
Query |
Query.join(JoinType type,
String table,
String fld1,
String fld2)
Adds a join of a given type, with a given table, with the condition that the
two given fields are equal, and returns a new query; all parameters are quoted
|
Query |
Query.joinParent(JoinType type,
FKey fk)
Adds a join of a given type, with a parent table, linked through the given foreign key
|
Query |
Query.joinParentFrom(JoinType type,
String table)
Adds a join of a given type, with the given parent table, linked through a foreign key
|
Query |
Query.joinParents(JoinType type)
Adds joins of a given type, with all parent tables, linked through foreign keys
|
Query |
Query.joinParentThrough(JoinType type,
String column)
Adds a join of a given type, with a parent table, linked through the given column
|
| Constructor and Description |
|---|
Join(JoinType type,
String table,
SQLCondition cond) |