public static enum FlinkConnectorOptions.LookupCacheMode extends Enum<FlinkConnectorOptions.LookupCacheMode>
| Enum Constant and Description |
|---|
AUTO
Auto mode, try to use partial mode.
|
FULL
Use full caching mode.
|
| Modifier and Type | Method and Description |
|---|---|
static FlinkConnectorOptions.LookupCacheMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlinkConnectorOptions.LookupCacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlinkConnectorOptions.LookupCacheMode AUTO
public static final FlinkConnectorOptions.LookupCacheMode FULL
public static FlinkConnectorOptions.LookupCacheMode[] values()
for (FlinkConnectorOptions.LookupCacheMode c : FlinkConnectorOptions.LookupCacheMode.values()) System.out.println(c);
public static FlinkConnectorOptions.LookupCacheMode 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 © 2023–2024 The Apache Software Foundation. All rights reserved.