public static enum SQLJoinTableSource.JoinType extends Enum<SQLJoinTableSource.JoinType>
Enum Constant and Description |
---|
COMMA |
CROSS_APPLY |
CROSS_JOIN |
FULL_OUTER_JOIN |
INNER_JOIN |
JOIN |
LEFT_OUTER_JOIN |
NATURAL_INNER_JOIN |
NATURAL_JOIN |
OUTER_APPLY |
RIGHT_OUTER_JOIN |
STRAIGHT_JOIN |
Modifier and Type | Field and Description |
---|---|
String |
name |
String |
name_lcase |
Modifier and Type | Method and Description |
---|---|
static String |
toString(SQLJoinTableSource.JoinType joinType) |
static SQLJoinTableSource.JoinType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLJoinTableSource.JoinType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLJoinTableSource.JoinType COMMA
public static final SQLJoinTableSource.JoinType JOIN
public static final SQLJoinTableSource.JoinType INNER_JOIN
public static final SQLJoinTableSource.JoinType CROSS_JOIN
public static final SQLJoinTableSource.JoinType NATURAL_JOIN
public static final SQLJoinTableSource.JoinType NATURAL_INNER_JOIN
public static final SQLJoinTableSource.JoinType LEFT_OUTER_JOIN
public static final SQLJoinTableSource.JoinType RIGHT_OUTER_JOIN
public static final SQLJoinTableSource.JoinType FULL_OUTER_JOIN
public static final SQLJoinTableSource.JoinType STRAIGHT_JOIN
public static final SQLJoinTableSource.JoinType OUTER_APPLY
public static final SQLJoinTableSource.JoinType CROSS_APPLY
public static SQLJoinTableSource.JoinType[] values()
for (SQLJoinTableSource.JoinType c : SQLJoinTableSource.JoinType.values()) System.out.println(c);
public static SQLJoinTableSource.JoinType 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 nullpublic static String toString(SQLJoinTableSource.JoinType joinType)
Copyright © 2013–2017 Alibaba Group. All rights reserved.