public enum BindingDiagnosticCode extends Enum<BindingDiagnosticCode>
Codes are a stable public contract: once shipped, names do not change
without a compatibility note. Default severities are documented per
defaultSeverity(); consumers can override per-code via
TSQLResolverConfig.setBindingSeverityFor(...).
Message text is explicitly NOT part of the stability contract — tests should assert on stable substrings, not exact wording.
| Modifier and Type | Method and Description |
|---|---|
BindingDiagnosticSeverity |
defaultSeverity() |
static BindingDiagnosticCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingDiagnosticCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingDiagnosticCode UNKNOWN_TABLE
public static final BindingDiagnosticCode UNKNOWN_COLUMN
public static final BindingDiagnosticCode AMBIGUOUS_COLUMN
public static final BindingDiagnosticCode UNKNOWN_ALIAS
public static final BindingDiagnosticCode INVALID_COLUMN_QUALIFIER
public static final BindingDiagnosticCode INVALID_STAR_QUALIFIER
public static final BindingDiagnosticCode UNBOUND_COLUMN_REFERENCE
public static final BindingDiagnosticCode CTE_OUTPUT_COLUMN_MISSING
public static final BindingDiagnosticCode SUBQUERY_OUTPUT_COLUMN_MISSING
public static final BindingDiagnosticCode SET_OPERATION_ARITY_MISMATCH
public static final BindingDiagnosticCode USING_COLUMN_NOT_COMMON
public static final BindingDiagnosticCode INTERNAL_BINDING_ERROR
public static final BindingDiagnosticCode CATALOG_METADATA_UNAVAILABLE
public static final BindingDiagnosticCode UNSUPPORTED_BINDING_SCOPE
public static BindingDiagnosticCode[] values()
for (BindingDiagnosticCode c : BindingDiagnosticCode.values()) System.out.println(c);
public static BindingDiagnosticCode 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 BindingDiagnosticSeverity defaultSeverity()