@PublicEvolving public static enum ExecutionConfigOptions.UpsertMaterialize extends Enum<ExecutionConfigOptions.UpsertMaterialize>
Enum Constant and Description |
---|
AUTO
Add materialize operator when a distributed disorder occurs on unique keys.
|
FORCE
Add materialize operator in any case.
|
NONE
In no case will materialize operator be added.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionConfigOptions.UpsertMaterialize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionConfigOptions.UpsertMaterialize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionConfigOptions.UpsertMaterialize NONE
public static final ExecutionConfigOptions.UpsertMaterialize AUTO
public static final ExecutionConfigOptions.UpsertMaterialize FORCE
public static ExecutionConfigOptions.UpsertMaterialize[] values()
for (ExecutionConfigOptions.UpsertMaterialize c : ExecutionConfigOptions.UpsertMaterialize.values()) System.out.println(c);
public static ExecutionConfigOptions.UpsertMaterialize 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–2024 The Apache Software Foundation. All rights reserved.