public enum CatalogDiagnosticCode extends Enum<CatalogDiagnosticCode>
See docs/designs/catalog-input-interface-implementation-plan.md
§7.3 for the canonical list and §15 for the severity defaults.
Phase 1A skeleton — final implementation in P1B (T1B.13).
| Modifier and Type | Method and Description |
|---|---|
static CatalogDiagnosticCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogDiagnosticCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogDiagnosticCode CATALOG_VALIDATION_DUPLICATE_NAME
public static final CatalogDiagnosticCode CATALOG_VALIDATION_MISSING_DEFAULT
public static final CatalogDiagnosticCode CATALOG_VALIDATION_IDENTIFIER_BYPASS
public static final CatalogDiagnosticCode CATALOG_LOAD_PARSE_ERROR
public static final CatalogDiagnosticCode CATALOG_LOAD_UNSUPPORTED_KIND
public static final CatalogDiagnosticCode CATALOG_RUNTIME_FETCH_FAILED
public static final CatalogDiagnosticCode CATALOG_RUNTIME_FETCH_LIMIT_EXCEEDED
public static final CatalogDiagnosticCode CATALOG_RUNTIME_TTL_EXPIRED
public static final CatalogDiagnosticCode CATALOG_RUNTIME_AMBIGUOUS_NAME
public static final CatalogDiagnosticCode CATALOG_RUNTIME_PARTIAL_RESULT
public static CatalogDiagnosticCode[] values()
for (CatalogDiagnosticCode c : CatalogDiagnosticCode.values()) System.out.println(c);
public static CatalogDiagnosticCode 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