Package | Description |
---|---|
adql.query.from |
Modifier and Type | Method and Description |
---|---|
OuterJoin.OuterType |
OuterJoin.getType()
Gets the OUTER join type (left, right or full).
|
static OuterJoin.OuterType |
OuterJoin.OuterType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OuterJoin.OuterType[] |
OuterJoin.OuterType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
OuterJoin.setType(OuterJoin.OuterType type)
Sets the OUTER join type (left, right or full).
|
Constructor and Description |
---|
OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type)
Builds a NATURAL OUTER join between the two given "tables".
|
OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type,
ClauseConstraints condition)
Builds an OUTER join between the two given "tables" with the given condition.
|
OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type,
java.util.Collection<ADQLColumn> lstColumns)
Builds an OUTER join between the two given "tables" with a list of columns to join.
|
SQLServer_OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type)
Builds a NATURAL OUTER join between the two given "tables".
|
SQLServer_OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type,
ClauseConstraints condition)
Builds an OUTER join between the two given "tables" with the given condition.
|
SQLServer_OuterJoin(FromContent left,
FromContent right,
OuterJoin.OuterType type,
java.util.Collection<ADQLColumn> lstColumns)
Builds an OUTER join between the two given "tables" with a list of columns to join.
|