public enum CatalogLoadingMode extends Enum<CatalogLoadingMode>
CatalogProvider fetches metadata.
Plan §10.1. Decision matrix:
EAGER — provider materializes everything at open(); tests, small catalogs.LAZY — provider materializes nothing; on-miss fetch per CatalogQuery.AUTO — eager up to maxEagerObjects, then lazy; live providers.Phase 1A skeleton — used as parameter type by Phase 1B+ implementations.
| Modifier and Type | Method and Description |
|---|---|
static CatalogLoadingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogLoadingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogLoadingMode EAGER
public static final CatalogLoadingMode LAZY
public static final CatalogLoadingMode AUTO
public static CatalogLoadingMode[] values()
for (CatalogLoadingMode c : CatalogLoadingMode.values()) System.out.println(c);
public static CatalogLoadingMode 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