public enum VolcanoPlannerPhase extends Enum<VolcanoPlannerPhase>
VolcanoPlanner passes through during optimization of a tree of
RelNode objects.| Enum Constant and Description |
|---|
CLEANUP |
OPTIMIZE |
PRE_PROCESS |
PRE_PROCESS_MDR |
| Modifier and Type | Method and Description |
|---|---|
static VolcanoPlannerPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VolcanoPlannerPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolcanoPlannerPhase PRE_PROCESS_MDR
public static final VolcanoPlannerPhase PRE_PROCESS
public static final VolcanoPlannerPhase OPTIMIZE
public static final VolcanoPlannerPhase CLEANUP
public static VolcanoPlannerPhase[] values()
for (VolcanoPlannerPhase c : VolcanoPlannerPhase.values()) System.out.println(c);
public static VolcanoPlannerPhase 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 © 2012–2015 The Apache Software Foundation. All rights reserved.