public static enum CoreOptions.MaterializedTableRefreshMode extends Enum<CoreOptions.MaterializedTableRefreshMode>
Enum Constant and Description |
---|
AUTOMATIC
The refresh pipeline mode is determined by freshness of materialized table, either
FULL or CONTINUOUS . |
CONTINUOUS
The refresh pipeline will be executed in continuous mode.
|
FULL
The refresh pipeline will be executed in full mode.
|
Modifier and Type | Method and Description |
---|---|
static CoreOptions.MaterializedTableRefreshMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreOptions.MaterializedTableRefreshMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreOptions.MaterializedTableRefreshMode CONTINUOUS
public static final CoreOptions.MaterializedTableRefreshMode FULL
public static final CoreOptions.MaterializedTableRefreshMode AUTOMATIC
FULL
or CONTINUOUS
.public static CoreOptions.MaterializedTableRefreshMode[] values()
for (CoreOptions.MaterializedTableRefreshMode c : CoreOptions.MaterializedTableRefreshMode.values()) System.out.println(c);
public static CoreOptions.MaterializedTableRefreshMode 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.