|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--net.sf.saffron.util.EnumeratedValues.BasicValue | +--net.sf.saffron.sql.SqlJoinOperator.JoinType
Enumerates the types of join.
Field Summary | |
static SqlJoinOperator.JoinType |
Comma
Comma join: the good old-fashioned SQL FROM clause,
where table expressions are specified with commas between them,
and join conditions are specified in the WHERE
clause. |
static int |
Comma_ORDINAL
|
static SqlJoinOperator.JoinType |
Cross
Cross join (also known as Cartesian product). |
static int |
Cross_ORDINAL
|
static EnumeratedValues |
enumeration
List of all allowable SqlJoinOperator.JoinType values. |
static SqlJoinOperator.JoinType |
Full
Full outer join. |
static int |
Full_ORDINAL
|
static SqlJoinOperator.JoinType |
Inner
Inner join. |
static int |
Inner_ORDINAL
|
static SqlJoinOperator.JoinType |
Left
Left outer join. |
static int |
Left_ORDINAL
|
static SqlJoinOperator.JoinType |
Right
Right outer join. |
static int |
Right_ORDINAL
|
Fields inherited from class net.sf.saffron.util.EnumeratedValues.BasicValue |
description_, name_, ordinal_ |
Constructor Summary | |
private |
SqlJoinOperator.JoinType(String name,
int ordinal)
|
Method Summary | |
static SqlJoinOperator.JoinType |
get(int ordinal)
Looks up a join type from its ordinal. |
static SqlJoinOperator.JoinType |
get(String name)
Looks up a join type from its name. |
Methods inherited from class net.sf.saffron.util.EnumeratedValues.BasicValue |
equals, getDescription, getName, getOrdinal, toString, unexpected |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final int Inner_ORDINAL
public static final SqlJoinOperator.JoinType Inner
public static final int Full_ORDINAL
public static final SqlJoinOperator.JoinType Full
public static final int Cross_ORDINAL
public static final SqlJoinOperator.JoinType Cross
public static final int Left_ORDINAL
public static final SqlJoinOperator.JoinType Left
public static final int Right_ORDINAL
public static final SqlJoinOperator.JoinType Right
public static final int Comma_ORDINAL
public static final SqlJoinOperator.JoinType Comma
FROM
clause,
where table expressions are specified with commas between them,
and join conditions are specified in the WHERE
clause.
public static final EnumeratedValues enumeration
SqlJoinOperator.JoinType
values.
Constructor Detail |
private SqlJoinOperator.JoinType(String name, int ordinal)
Method Detail |
public static SqlJoinOperator.JoinType get(int ordinal)
public static SqlJoinOperator.JoinType get(String name)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |