public static enum ExecutionConfigOptions.NotNullEnforcer extends Enum<ExecutionConfigOptions.NotNullEnforcer>
| Enum Constant and Description |
|---|
DROP
Drop records when writing null values into NOT NULL column.
|
ERROR
Throws runtime exception when writing null values into NOT NULL column.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionConfigOptions.NotNullEnforcer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionConfigOptions.NotNullEnforcer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionConfigOptions.NotNullEnforcer ERROR
public static final ExecutionConfigOptions.NotNullEnforcer DROP
public static ExecutionConfigOptions.NotNullEnforcer[] values()
for (ExecutionConfigOptions.NotNullEnforcer c : ExecutionConfigOptions.NotNullEnforcer.values()) System.out.println(c);
public static ExecutionConfigOptions.NotNullEnforcer 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–2021 The Apache Software Foundation. All rights reserved.