org.eigenbase.relopt.volcano
Enum VolcanoPlannerPhase
java.lang.Object
java.lang.Enum<VolcanoPlannerPhase>
org.eigenbase.relopt.volcano.VolcanoPlannerPhase
- All Implemented Interfaces:
- Serializable, Comparable<VolcanoPlannerPhase>
public enum VolcanoPlannerPhase
- extends Enum<VolcanoPlannerPhase>
VolcanoPlannerPhase represents the phases of operation that the VolcanoPlanner
passes through during optimization of a tree of RelNode
objects.
- Author:
- stephan
PRE_PROCESS_MDR
public static final VolcanoPlannerPhase PRE_PROCESS_MDR
PRE_PROCESS
public static final VolcanoPlannerPhase PRE_PROCESS
OPTIMIZE
public static final VolcanoPlannerPhase OPTIMIZE
CLEANUP
public static final VolcanoPlannerPhase CLEANUP
values
public static final VolcanoPlannerPhase[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(VolcanoPlannerPhase c : VolcanoPlannerPhase.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static VolcanoPlannerPhase valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name