Enum ExecutionConfigOptions.NestedEnforcer
- java.lang.Object
-
- java.lang.Enum<ExecutionConfigOptions.NestedEnforcer>
-
- org.apache.flink.table.api.config.ExecutionConfigOptions.NestedEnforcer
-
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionConfigOptions.NestedEnforcer>
,org.apache.flink.configuration.DescribedEnum
- Enclosing class:
- ExecutionConfigOptions
@PublicEvolving public static enum ExecutionConfigOptions.NestedEnforcer extends Enum<ExecutionConfigOptions.NestedEnforcer> implements org.apache.flink.configuration.DescribedEnum
The enforcer to check the constraints on nested types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IGNORE
ROWS
ROWS_AND_COLLECTIONS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.configuration.description.InlineElement
getDescription()
static ExecutionConfigOptions.NestedEnforcer
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutionConfigOptions.NestedEnforcer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORE
public static final ExecutionConfigOptions.NestedEnforcer IGNORE
-
ROWS
public static final ExecutionConfigOptions.NestedEnforcer ROWS
-
ROWS_AND_COLLECTIONS
public static final ExecutionConfigOptions.NestedEnforcer ROWS_AND_COLLECTIONS
-
-
Method Detail
-
values
public static ExecutionConfigOptions.NestedEnforcer[] 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 (ExecutionConfigOptions.NestedEnforcer c : ExecutionConfigOptions.NestedEnforcer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionConfigOptions.NestedEnforcer 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:
getDescription
in interfaceorg.apache.flink.configuration.DescribedEnum
-
-