public enum CatalogDiagnosticSeverity extends Enum<CatalogDiagnosticSeverity>
CatalogDiagnostic.
See docs/designs/catalog-input-interface-implementation-plan.md
§7.3 for the surfacing rules and §15 for the failure-handling matrix.
Phase 1A skeleton — final implementation in P1B (T1B.13).
| Modifier and Type | Method and Description |
|---|---|
static CatalogDiagnosticSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogDiagnosticSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogDiagnosticSeverity INFO
public static final CatalogDiagnosticSeverity WARN
public static final CatalogDiagnosticSeverity ERROR
public static CatalogDiagnosticSeverity[] values()
for (CatalogDiagnosticSeverity c : CatalogDiagnosticSeverity.values()) System.out.println(c);
public static CatalogDiagnosticSeverity 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