public enum JoinSourceSyntax extends Enum<JoinSourceSyntax>
JoinEntity was written in the source SQL.
EXPLICIT — a keyword join (JOIN ... ON,
LEFT JOIN, CROSS JOIN, NATURAL JOIN,
USING (...)).COMMA — a comma-FROM cross product
(FROM a, b), modelled as
SemanticJoinType.IMPLICIT_CROSS.Introduced by join-analysis slice 162 (S1).
| Modifier and Type | Method and Description |
|---|---|
static JoinSourceSyntax |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinSourceSyntax[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinSourceSyntax EXPLICIT
public static final JoinSourceSyntax COMMA
public static JoinSourceSyntax[] values()
for (JoinSourceSyntax c : JoinSourceSyntax.values()) System.out.println(c);
public static JoinSourceSyntax 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 null