Enum TableConfigOptions.CatalogPlanCompilation
java.lang.Object
java.lang.Enum<TableConfigOptions.CatalogPlanCompilation>
org.apache.flink.table.api.config.TableConfigOptions.CatalogPlanCompilation
- All Implemented Interfaces:
Serializable,Comparable<TableConfigOptions.CatalogPlanCompilation>,java.lang.constant.Constable,DescribedEnum
- Enclosing class:
- TableConfigOptions
@PublicEvolving
public static enum TableConfigOptions.CatalogPlanCompilation
extends Enum<TableConfigOptions.CatalogPlanCompilation>
implements DescribedEnum
Strategy to compile
Catalog objects into a plan.
Depending on the configuration, permanent catalog metadata (such as information about tables and functions) will be persisted in the plan as well. Anonymous/inline objects will be persisted (including schema and options) if possible or fail the compilation otherwise. For temporary objects, only the identifier is part of the plan and the object needs to be present in the session context during a restore.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the description for the enum constant.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALL
-
SCHEMA
-
IDENTIFIER
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
Description copied from interface:DescribedEnumReturns the description for the enum constant.If you want to include links or code blocks, use
TextElement.wrap(InlineElement...)to wrap multiple inline elements into a single one.- Specified by:
getDescriptionin interfaceDescribedEnum
-