Package org.apache.flink.table.catalog
Enum CatalogMaterializedTable.LogicalRefreshMode
- java.lang.Object
-
- java.lang.Enum<CatalogMaterializedTable.LogicalRefreshMode>
-
- org.apache.flink.table.catalog.CatalogMaterializedTable.LogicalRefreshMode
-
- All Implemented Interfaces:
Serializable,Comparable<CatalogMaterializedTable.LogicalRefreshMode>
- Enclosing interface:
- CatalogMaterializedTable
@PublicEvolving public static enum CatalogMaterializedTable.LogicalRefreshMode extends Enum<CatalogMaterializedTable.LogicalRefreshMode>
The logical refresh mode of materialized table.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOMATICThe refresh pipeline mode is determined by freshness of materialized table, eitherCatalogMaterializedTable.RefreshMode.FULLorCatalogMaterializedTable.RefreshMode.CONTINUOUS.CONTINUOUSThe refresh pipeline will be executed in continuous mode, corresponding toCatalogMaterializedTable.RefreshMode.CONTINUOUS.FULLThe refresh pipeline will be executed in full mode, corresponding toCatalogMaterializedTable.RefreshMode.FULL.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CatalogMaterializedTable.LogicalRefreshModevalueOf(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.
-
-
-
Enum Constant Detail
-
CONTINUOUS
public static final CatalogMaterializedTable.LogicalRefreshMode CONTINUOUS
The refresh pipeline will be executed in continuous mode, corresponding toCatalogMaterializedTable.RefreshMode.CONTINUOUS.
-
FULL
public static final CatalogMaterializedTable.LogicalRefreshMode FULL
The refresh pipeline will be executed in full mode, corresponding toCatalogMaterializedTable.RefreshMode.FULL.
-
AUTOMATIC
public static final CatalogMaterializedTable.LogicalRefreshMode AUTOMATIC
The refresh pipeline mode is determined by freshness of materialized table, eitherCatalogMaterializedTable.RefreshMode.FULLorCatalogMaterializedTable.RefreshMode.CONTINUOUS.
-
-
Method Detail
-
values
public static CatalogMaterializedTable.LogicalRefreshMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CatalogMaterializedTable.LogicalRefreshMode c : CatalogMaterializedTable.LogicalRefreshMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CatalogMaterializedTable.LogicalRefreshMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-