public enum BindingDiagnosticSeverity extends Enum<BindingDiagnosticSeverity>
BindingDiagnostic.
Frozen v1 surface (plan §5.4). Distinct from
gudusoft.gsqlparser.catalog.diagnostic.CatalogDiagnosticSeverity —
binding diagnostics report SQL reference errors, catalog diagnostics report
catalog load/runtime errors. Mixing the two is explicitly forbidden by the
design plan.
| Modifier and Type | Method and Description |
|---|---|
static BindingDiagnosticSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BindingDiagnosticSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BindingDiagnosticSeverity ERROR
public static final BindingDiagnosticSeverity WARNING
public static final BindingDiagnosticSeverity INFO
public static BindingDiagnosticSeverity[] values()
for (BindingDiagnosticSeverity c : BindingDiagnosticSeverity.values()) System.out.println(c);
public static BindingDiagnosticSeverity 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