Enum TableConfigOptions.CatalogPlanRestore
- java.lang.Object
-
- java.lang.Enum<TableConfigOptions.CatalogPlanRestore>
-
- org.apache.flink.table.api.config.TableConfigOptions.CatalogPlanRestore
-
- All Implemented Interfaces:
Serializable,Comparable<TableConfigOptions.CatalogPlanRestore>,org.apache.flink.configuration.DescribedEnum
- Enclosing class:
- TableConfigOptions
@PublicEvolving public static enum TableConfigOptions.CatalogPlanRestore extends Enum<TableConfigOptions.CatalogPlanRestore> implements org.apache.flink.configuration.DescribedEnum
Strategy to restoreCatalogobjects using the plan and lookups if necessary.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLALL_ENFORCEDIDENTIFIER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.configuration.description.InlineElementgetDescription()static TableConfigOptions.CatalogPlanRestorevalueOf(String name)Returns the enum constant of this type with the specified name.static TableConfigOptions.CatalogPlanRestore[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final TableConfigOptions.CatalogPlanRestore ALL
-
ALL_ENFORCED
public static final TableConfigOptions.CatalogPlanRestore ALL_ENFORCED
-
IDENTIFIER
public static final TableConfigOptions.CatalogPlanRestore IDENTIFIER
-
-
Method Detail
-
values
public static TableConfigOptions.CatalogPlanRestore[] 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 (TableConfigOptions.CatalogPlanRestore c : TableConfigOptions.CatalogPlanRestore.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TableConfigOptions.CatalogPlanRestore 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
-
getDescription
@Internal public org.apache.flink.configuration.description.InlineElement getDescription()
- Specified by:
getDescriptionin interfaceorg.apache.flink.configuration.DescribedEnum
-
-