@PublicEvolving public enum PlannerType extends Enum<PlannerType>
Planner. Except for the optimization, the different planner
also differs in the time semantic and so on.| Enum Constant and Description |
|---|
BLINK
Blink planner is the up-to-date planner in Flink.
|
OLD
Old planner is used before.
|
| Modifier and Type | Method and Description |
|---|---|
static PlannerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlannerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlannerType BLINK
public static final PlannerType OLD
public static PlannerType[] values()
for (PlannerType c : PlannerType.values()) System.out.println(c);
public static PlannerType 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.