public enum JoinConditionType extends Enum<JoinConditionType> implements Symbolizable
| Enum Constant and Description |
|---|
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)". |
| Modifier and Type | Method and Description |
|---|---|
static JoinConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfsymbolpublic static final JoinConditionType NONE
FROM EMP, DEPT".public static final JoinConditionType ON
ON condition,
for example "FROM EMP JOIN DEPT ON EMP.DEPTNO = DEPT.DEPTNO".public static final JoinConditionType USING
USING condition,
for example "FROM EMP JOIN DEPT USING (DEPTNO)".public static JoinConditionType[] values()
for (JoinConditionType c : JoinConditionType.values()) System.out.println(c);
public static JoinConditionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012-2022 Apache Software Foundation. All Rights Reserved.