public enum JoinEndpointKind extends Enum<JoinEndpointKind>
JoinEndpoint.
RELATION — a single FROM-clause relation (a base
table, CTE, or derived table), identified by its alias and
qualified name.JOIN_RESULT — the accumulated result of prior joins in
a left-deep chain, identified by the order of the join that
produced it and the aliases it contributes.Introduced by join-analysis slice 162 (S1).
| Enum Constant and Description |
|---|
JOIN_RESULT |
RELATION |
| Modifier and Type | Method and Description |
|---|---|
static JoinEndpointKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JoinEndpointKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JoinEndpointKind RELATION
public static final JoinEndpointKind JOIN_RESULT
public static JoinEndpointKind[] values()
for (JoinEndpointKind c : JoinEndpointKind.values()) System.out.println(c);
public static JoinEndpointKind 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