@PublicEvolving public static enum CatalogMaterializedTable.LogicalRefreshMode extends Enum<CatalogMaterializedTable.LogicalRefreshMode>
| Enum Constant and Description |
|---|
AUTOMATIC
The refresh pipeline mode is determined by freshness of materialized table, either
CatalogMaterializedTable.RefreshMode.FULL or CatalogMaterializedTable.RefreshMode.CONTINUOUS. |
CONTINUOUS
The refresh pipeline will be executed in continuous mode, corresponding to
CatalogMaterializedTable.RefreshMode.CONTINUOUS. |
FULL
The refresh pipeline will be executed in full mode, corresponding to
CatalogMaterializedTable.RefreshMode.FULL. |
| Modifier and Type | Method and Description |
|---|---|
static CatalogMaterializedTable.LogicalRefreshMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CatalogMaterializedTable.LogicalRefreshMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CatalogMaterializedTable.LogicalRefreshMode CONTINUOUS
CatalogMaterializedTable.RefreshMode.CONTINUOUS.public static final CatalogMaterializedTable.LogicalRefreshMode FULL
CatalogMaterializedTable.RefreshMode.FULL.public static final CatalogMaterializedTable.LogicalRefreshMode AUTOMATIC
CatalogMaterializedTable.RefreshMode.FULL or CatalogMaterializedTable.RefreshMode.CONTINUOUS.public static CatalogMaterializedTable.LogicalRefreshMode[] values()
for (CatalogMaterializedTable.LogicalRefreshMode c : CatalogMaterializedTable.LogicalRefreshMode.values()) System.out.println(c);
public static CatalogMaterializedTable.LogicalRefreshMode 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 nullCopyright © 2014–2025 The Apache Software Foundation. All rights reserved.