public enum ColumnResolutionStatus extends Enum<ColumnResolutionStatus>
ColumnRef to a base relation/final
table (GAP 5).
RESOLVED — the resolver (or a documented fallback)
supplied a final-table qualified name.UNRESOLVED — resolution was attempted but no final
table was produced (resolution==null / NOT_FOUND). The
resolved name is null; a table is never
fabricated.NOT_APPLICABLE — resolution does not apply (e.g. the
column reference is itself a literal or a computed expression
carried as a complex operand).Introduced by join-analysis slice 162 (S1); populated in slice 165 (S4).
| Enum Constant and Description |
|---|
NOT_APPLICABLE |
RESOLVED |
UNRESOLVED |
| Modifier and Type | Method and Description |
|---|---|
static ColumnResolutionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnResolutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnResolutionStatus RESOLVED
public static final ColumnResolutionStatus UNRESOLVED
public static final ColumnResolutionStatus NOT_APPLICABLE
public static ColumnResolutionStatus[] values()
for (ColumnResolutionStatus c : ColumnResolutionStatus.values()) System.out.println(c);
public static ColumnResolutionStatus 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