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.LATERAL — a lateral join: SQL Server
CROSS APPLY / OUTER APPLY (and reserved for
ANSI LATERAL / PostgreSQL lateral). The right operand
is correlated to the left; the join carries no ON/USING (the
correlation lives inside the right operand). Pair with
JoinEntity.isLateral().SEMI — a predicate-derived semi-join: an
EXISTS / IN (or NOT EXISTS /
NOT IN) subquery in a WHERE clause (R8), not a written
FROM-clause join. Pair with SemanticJoinType.SEMI /
SemanticJoinType.ANTI_SEMI.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 final JoinSourceSyntax LATERAL
public static final JoinSourceSyntax SEMI
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