|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<SqlJoinOperator.ConditionType> org.eigenbase.sql.SqlJoinOperator.ConditionType
public static enum SqlJoinOperator.ConditionType
Enumerates the types of condition in a join expression.
Enum Constant Summary | |
---|---|
None
Join clause has no condition, for example "FROM EMP, DEPT" |
|
On
Join clause has an ON condition, for example "FROM EMP JOIN DEPT ON EMP.DEPTNO = DEPT.DEPTNO" |
|
Using
Join clause has a USING condition, for example "FROM EMP JOIN DEPT USING (DEPTNO)" |
Method Summary | |
---|---|
static SqlJoinOperator.ConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SqlJoinOperator.ConditionType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.eigenbase.sql.SqlLiteral.SqlSymbol |
---|
name, ordinal |
Enum Constant Detail |
---|
public static final SqlJoinOperator.ConditionType None
public static final SqlJoinOperator.ConditionType On
public static final SqlJoinOperator.ConditionType Using
Method Detail |
---|
public static final SqlJoinOperator.ConditionType[] values()
for(SqlJoinOperator.ConditionType c : SqlJoinOperator.ConditionType.values()) System.out.println(c);
public static SqlJoinOperator.ConditionType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |